[Answered ]-NoReverseMatch at reset_password_complete: Django PasswordResetConfirmView

1👍

this line is overwriting all your paths:

    path('', include('django.contrib.auth.urls')),

just remove it or if you want to keep some of them place it at the end after your paths

Leave a comment