Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Working With Django User Management

In this lesson, you gain access to Django’s authentication system URLs:

  • accounts/login/ - Used to Log a User Into Your Application
  • accounts/logout/ - Used to Log a User Out of Your Application
  • accounts/password_change/ - Used to Change a Password
  • accounts/password_change/done/ - Shows a Confirmation That a Password Was Changed
  • accounts/password_reset/ - Used to Request an Email With a Password Reset Link
  • accounts/password_reset/done/ - Shows Confirmation That a Password Reset Email Was Sent
  • accounts/reset/<uidb64>/<token>/ - Used to Set a New Password Using a Password Reset Link
  • accounts/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/

Become a Member to join the conversation.