In this lesson, you gain access to Django’s authentication system URLs:
accounts/login/- Used to Log a User Into Your Applicationaccounts/logout/- Used to Log a User Out of Your Applicationaccounts/password_change/- Used to Change a Passwordaccounts/password_change/done/- Shows a Confirmation That a Password Was Changedaccounts/password_reset/- Used to Request an Email With a Password Reset Linkaccounts/password_reset/done/- Shows Confirmation That a Password Reset Email Was Sentaccounts/reset/<uidb64>/<token>/- Used to Set a New Password Using a Password Reset Linkaccounts/reset/done/- Shows Confirmation That a Password Was Reset
You’ll also visit the login address, at http://127.0.0.1:8000/accounts/login/
