diff options
Diffstat (limited to 'ishtar_common/urls_registration.py')
-rw-r--r-- | ishtar_common/urls_registration.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ishtar_common/urls_registration.py b/ishtar_common/urls_registration.py index fc8d2c53c..556bf6f95 100644 --- a/ishtar_common/urls_registration.py +++ b/ishtar_common/urls_registration.py @@ -42,11 +42,7 @@ urlpatterns = [ path('accounts/logout/', views.LogoutView.as_view(), name='logout'), path('accounts/password_change/', views.PasswordChangeView.as_view(), name='password_change'), - path('accounts/password_reset/', auth_views.PasswordResetView.as_view(), name='password_reset'), - path('accounts/password_reset/done/', auth_views.PasswordResetDoneView.as_view(), - name='password_reset_done'), + path('accounts/password_reset/', views.PasswordResetView.as_view(), name='password_reset'), path('accounts/reset/<uidb64>/<token>/', views.PasswordResetConfirmView.as_view(), name='password_reset_confirm'), - path('accounts/reset/done/', auth_views.PasswordResetCompleteView.as_view(), - name='password_reset_complete'), ]
\ No newline at end of file |