...
|
...
|
@@ -14,9 +14,6 @@ const sessionService = require('../models/session-service'); |
|
|
// 本地地址 localhost
|
|
|
helpers.urlFormat = helpers.fakeUrlFormat;
|
|
|
|
|
|
const SIGN_IN_URL = helpers.urlFormat('/signin.html');
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 找回密码主页面
|
|
|
*/
|
...
|
...
|
@@ -127,7 +124,8 @@ module.exports.resetPasswordPage = (req, res, next) => { |
|
|
.then(result => {
|
|
|
res.render('back/reset-pwd', Object.assign({
|
|
|
module: 'passport',
|
|
|
page: 'back-reset-pwd'
|
|
|
page: 'back-reset-pwd',
|
|
|
title:'重新设置密码'
|
|
|
}, {
|
|
|
code: code
|
|
|
}, result))
|
...
|
...
|
|