attempt to add new user mailer

This commit is contained in:
Michael Q Larson
2014-12-07 20:50:53 -08:00
parent 5cee844046
commit 2777259af9
2 changed files with 21 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ exports.logout = function(req, res) {
exports.getEmailSignin = function(req, res) {
if (req.user) return res.redirect('/');
res.render('account/email-signup', {
title: 'Create Your Free Code Camp Account'
title: 'Sign in to your Free Code Camp Account'
});
};