Django Registration + Django Auth - Part 1


Documentation: 
https://django-registration.readthedocs.io/en/latest/
https://pypi.org/project/django-registration/
https://github.com/ubernostrum/django-registration
 

pip install django-registration==3.3

 


INSTALLED_APPS = [
    ...

    'django_registration',

    ...
]

 

Create the required folders and templates

 

mysite/templates/django_registration
    activation_complete.html
    activation_email_body.txt
    activation_email_subject.txt
    activation_failed.html
    registration_closed.html
    registration_complete.html
    registration_form.html

mysite/templates/registration
    logged_out.html
    login.html
    password_change_done.html
    password_change_form.html
    password_reset_complete.html
    password_reset_confirm.html
    password_reset_done.html
    password_reset_email.html
    password_reset_form.html
    password_reset_subject.txt


Python 3.12
Django==4.2
django-registration==3.3


02 Jan. 2023 | Last Updated: 22 Nov. 2025 | jaimedcsilva

Related
  • Django Registration + Django Auth - Part 1
  • Django Registration + Django Auth - Part 2
  • Django Registration + Django Auth - Part 3
  • Django Registration + Django Auth - Part 4
  • Adding Google reCapthca - Part 5
  • Adding Google Recapthca - Part 6

  • Buy Me a Coffee