[Answered ]-NoReverseMatch on django generated views

2👍

The correct name for password reset is just password_reset, to reverse it use:

{% url 'password_reset' %}

To fix the login redirect, you have to adjust the LOGIN_URL in your settings.py

I suggest you remove the part regarding the template and post it as a separate question.

Leave a comment