How to override a form in django-rest-auth with my own custom form?
I'm using django-rest-auth and I am trying to fix a bug in the password reset view by overwriting one of the form's methods. Although I've successfully done something similar with a different django-rest-auth form, I can't make it work on this one. Whatever I do, the old form is used. api/urls.py from django.urls import include, path from django.contrib.auth import views from django.conf.urls import include, url from django.views.generic.base import RedirectView from .forms import SetPasswordFormCustom from .forms import PasswordResetFormCustom urlpatterns = [ path('password/reset/', views