NoReverseMatch at /rest-auth/password/reset/

I also was having this problem, and found this github issue it said we need to add

url(r'^', include('django.contrib.auth.urls')),

on the urlpatterns.

As stated there it says that The PasswordReset view depends on django.contrib.auth.views.password_reset_confirm view.

Leave a Comment