[Answered ]-Django Rest – Redirect Password Form?

1👍

So I figured it out!

Had to update my urls.py to the following:

from dj_rest_auth.views import PasswordResetConfirmView

path('users/reset/<uidb64>/<token>/', PasswordResetConfirmView.as_view()),

This url now points to the django password reset confirm view in the django rest API which is fine to reset the password on the backend.

Thanks!

Leave a comment