diff --git a/controllers/logins.js b/controllers/logins.js index d7c5c6f..db62da7 100644 --- a/controllers/logins.js +++ b/controllers/logins.js @@ -15,7 +15,7 @@ controller.post('/', function(req, res){ } }).then(function(foundUser){ req.session.currentUser = foundUser; - res.redirect('/app.html'); + res.redirect('/'); }); });