Removed forgot_password URLs for now until they are implemented on another branch

This commit is contained in:
Sahat Yalkabov
2014-01-29 00:01:33 -05:00
parent 8440efa84d
commit e541ac0793

2
app.js
View File

@ -79,8 +79,6 @@ app.use(express.errorHandler());
app.get('/', homeController.index);
app.get('/login', userController.getLogin);
app.post('/login', userController.postLogin);
app.get('/login/forgot', userController.getForgotPassword);
app.post('/login/forgot', userController.postForgotPassword);
app.get('/logout', userController.logout);
app.get('/signup', userController.getSignup);
app.post('/signup', userController.postSignup);