Tell us what’s happening:
I already put this code.
app.route(‘/logout’)
.get((req, res) => {
req.logout();
res.redirect(‘/’);
});
app.use((req, res, next) => {
res.status(404)
.type(‘text’)
.send(‘Not Found’);
});
Failed: Logout should redirect to the home page.
It’s not working on the homepage.
Your project link(s)
solution:
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36 Edg/103.0.1264.37
Challenge: Logging a User Out
Link to the challenge: