skip to Main Content

Django REST framework reset password confirmation not working

I am building a user authentication backend with djano using rest_auth and allauth. This is my api app's urls.py urlpatterns = [ path('rest-auth/', include('rest_auth.urls')), path('rest-auth/registration/', include('rest_auth.registration.urls')), path("account/", include('allauth.urls')), ] after running server, I am going to rest-auth/password/reset, type in the…

VIEW QUESTION
Back To Top
Search