diff --git a/ProjectSourceCode/src/index.js b/ProjectSourceCode/src/index.js index cd9e612..6f3ee8d 100644 --- a/ProjectSourceCode/src/index.js +++ b/ProjectSourceCode/src/index.js @@ -133,7 +133,7 @@ app.get('/', (req, res) => { // Check if mathc returns no data if (!match) { // Render the login page with the message parameter - return res.render('pages/login', { message: 'Password does not match' }); + return res.render('pages/home', { message: 'Password does not match' }); } // Save user information in the session variable diff --git a/ProjectSourceCode/src/resources/css/navigation-bar/navigation-bar.css b/ProjectSourceCode/src/resources/css/navigation-bar/navigation-bar.css index d4648c4..d87951c 100644 --- a/ProjectSourceCode/src/resources/css/navigation-bar/navigation-bar.css +++ b/ProjectSourceCode/src/resources/css/navigation-bar/navigation-bar.css @@ -35,6 +35,7 @@ #user { width: 25px; + cursor: pointer; transition: width 0.3s ease; /* Adding transition for smooth effect */ }