add password reset page

This commit is contained in:
GotPPay
2018-05-29 17:28:55 +02:00
parent d4bd965365
commit 6c262a03d9
4 changed files with 140 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
module.exports = {
path: 'reset-password',
getComponent(nextState, cb) {
require.ensure([], (require) => {
cb(null, require('./components/ResetPassword'));
});
}
};