Adding flash modal for first-time <13 visitors

This commit is contained in:
Andrew Hayward 2013-05-20 14:50:34 -04:00
Родитель c24d859f2f
Коммит dde2a8ce38
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -179,6 +179,16 @@ function processChildLearnerSignup (req, res, next) {
if (err) return fail(err);
delete req.session.signup;
req.flash('modal', {
title: 'Welcome to the Chicago Summer of Learning',
value:
'<p>You have been given a temporary account for 10 days.</p>' +
'<p>Please make sure that your guardian checks their email so that they can register you for a permanent account.</p>'
,
buttons: {
'Get Started!': 'primary'
}
});
redirectUser(req, res, user);
});
});