mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-11 08:02:22 +01:00
Fix bug for Forgot Password page
This commit is contained in:
@ -31,7 +31,7 @@ urlpatterns = [
|
|||||||
path("register/", RegisterView.as_view(), name="register"),
|
path("register/", RegisterView.as_view(), name="register"),
|
||||||
path("activate/<int:user_id>/<str:token>/", ActivateView.as_view(), name="activate"),
|
path("activate/<int:user_id>/<str:token>/", ActivateView.as_view(), name="activate"),
|
||||||
path("forgotpassword/", ForgotPasswordView.as_view(), name="forgotpassword"),
|
path("forgotpassword/", ForgotPasswordView.as_view(), name="forgotpassword"),
|
||||||
path("resetpassword/<int:user_id>/<str:token>/", ResetPasswordView.as_view, name="resetpassword"),
|
path("resetpassword/<int:user_id>/<str:token>/", ResetPasswordView.as_view(), name="resetpassword"),
|
||||||
path("admin/", admin.site.urls),
|
path("admin/", admin.site.urls),
|
||||||
path("privacy/", PrivacyView.as_view(), name="privacy"),
|
path("privacy/", PrivacyView.as_view(), name="privacy"),
|
||||||
path("metrics/", metrics, name="metrics"),
|
path("metrics/", metrics, name="metrics"),
|
||||||
|
|||||||
Reference in New Issue
Block a user