...
|
...
|
@@ -81,11 +81,11 @@ class BackNew { |
|
|
/**
|
|
|
* 通过邮箱找回密码成功页
|
|
|
*/
|
|
|
backByEmailSuccess(req, res) {
|
|
|
backByEmailSuccess(req, res, next) {
|
|
|
let email = req.query.email || '';
|
|
|
|
|
|
if (!helpers.verifyEmail(email)) {
|
|
|
res.redirect(400);
|
|
|
return next();
|
|
|
}
|
|
|
res.render('back/email-success-new', {
|
|
|
width750: true,
|
...
|
...
|
|