Logout Functionality

Learn how to implement the logout functionality so that users are directed to a homepage rather than Django’s default logout page.

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 ...