As I understand it; once user has been sent a reset email, and successfully reset their password, the PasswordResetCompleteView is displayed. But what is displayed if the reset fails. I have provided my own HTML for the other authentication URL but am not sure what to do about this one.
Thanks
urlpatterns = [
path('', views.home, name="home"),
path('profiles/login/', auth_views.LoginView.as_view(template_name="profiles/login.html", next_page="home", redirect_authenticated_user=True), name='login'),
path('profiles/logout/', auth_views.LogoutView.as_view(template_name="profiles/logout.html"), name='logout'),
path('profiles/create_profile/', views.create_profile, name='create_profile'),
path('profiles/password_change/', auth_views.PasswordChangeView.as_view(template_name="profiles/password_change.html"), name='password_change'),
path('profiles/password_change/done/', auth_views.PasswordChangeDoneView.as_view(template_name="profiles/password_change_done.html"), name='password_change_done'),
path('profiles/password_reset/', auth_views.PasswordResetView.as_view(template_name="profiles/password_reset.html"), name='password_reset'),
path('profiles/password_reset/done/', auth_views.PasswordResetDoneView.as_view(template_name="profiles/password_reset_done.html"), name='password_reset_done'),
path('profiles/reset/<uidb64>/<token>/', auth_views.PasswordResetConfirmView.as_view(), name='password_reset_confirm'),
path('profiles/reset/done/', auth_views.PasswordResetCompleteView.as_view(template_name="profiles/password_reset_complete.html"), name='password_reset_complete'),
]