diff --git a/app.js b/app.js index 89b76c0ff5..1bedc9013c 100755 --- a/app.js +++ b/app.js @@ -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);