├── .gitignore ├── LICENSE ├── README.md └── registration ├── 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_email.txt └── password_reset_form.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/README.md -------------------------------------------------------------------------------- /registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_change_done.html -------------------------------------------------------------------------------- /registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_change_form.html -------------------------------------------------------------------------------- /registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_reset_complete.html -------------------------------------------------------------------------------- /registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_reset_done.html -------------------------------------------------------------------------------- /registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_reset_email.html -------------------------------------------------------------------------------- /registration/password_reset_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_reset_email.txt -------------------------------------------------------------------------------- /registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Password-Management-Templates/HEAD/registration/password_reset_form.html --------------------------------------------------------------------------------