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

Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

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.