Merge pull request #9725 from raisedadead/fix/update-sign-in-page-title

Update the title of the sign in view
This commit is contained in:
That Guy
2016-07-16 15:14:43 +01:00
committed by GitHub

View File

@ -221,7 +221,7 @@ module.exports = function(app) {
return res.redirect('/'); return res.redirect('/');
} }
return res.render('account/signin', { return res.render('account/signin', {
title: 'Sign in to Free Code Camp using a Social Media Account' title: 'Sign in to Free Code Camp'
}); });
} }