Logout Functionality
Understand how to implement and customize logout functionality in a Django users app. Explore redirecting users to the homepage after logout, modifying URL paths and views, and updating navigation to reflect login status changes.
We'll cover the following...
We'll cover the following...
In the last lesson, we learned that when users log out, they’re taken to Django’s default logout page.
We will redirect users to the Homepage instead of the logout page.
Logout URL path
Go through the users/urls.py file in the widget below to see how we’ve implemented the ...