Skip to content
Snippets Groups Projects
Commit 8736b78e authored by Martin Burchell's avatar Martin Burchell
Browse files

Remove change password for now

I don't think this is used
parent 35c8c119
No related branches found
No related tags found
2 merge requests!166Staging,!157Django 2.2 and Python 3 upgrade
from django.conf.urls import url
from django.contrib.auth.views import (
LoginView, logout_then_login, PasswordChangeView, PasswordResetConfirmView
LoginView, logout_then_login, PasswordResetConfirmView
)
from django.urls import reverse
from .views import ResetPassword
......@@ -13,8 +12,4 @@ urlpatterns = [
url(r'password_reset_confirm/(?P<uidb64>[0-9A-Za-z]{1,13})-(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
PasswordResetConfirmView.as_view(), {'post_reset_redirect': '/'},
name='password_reset_confirm'),
url(r'password_change/$',
PasswordChangeView.as_view(),
{'post_change_redirect': reverse('personal_edit')},
name='password_change'),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment