[Fixed]-Change password link on login page

1👍

If you want to add password reset url to the Django Admin login page, you have to override default template and provide your own. You will also have to make your own password reset templates, since django admin does not provide any by default.

django admin template can be found here: https://github.com/django/django/blob/1.10.6/django/contrib/admin/templates/admin/login.html

0👍

The most straightforward way is the default: for 1.11 or dev (also available in the version that was available when you posted 1.10). No need to override any templates.

Leave a comment