From c71949dac6e6dceab313f58576c0c4c87928583c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D0=BE=D0=BD=D0=BA=D0=BE=D0=B2=D0=B8=D0=B4=20=D0=A0?= =?UTF-8?q?=D0=BE=D0=BC=D0=B0=D0=BD?= Date: Thu, 25 Feb 2021 16:13:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9A=D0=BD=D0=BE=D0=BF=D0=BA=D0=B0=20=D0=B2?= =?UTF-8?q?=D0=BE=D1=81=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=BF=D0=B0=D1=80=D0=BE=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=D0=B2=D1=8F=D0=B7=D0=B0=D0=BD=D0=B0=20=D0=BA?= =?UTF-8?q?=20=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- access_controller/urls.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/access_controller/urls.py b/access_controller/urls.py index edd173e..45781bf 100644 --- a/access_controller/urls.py +++ b/access_controller/urls.py @@ -27,11 +27,12 @@ urlpatterns = [ path('accounts/login/', LoginView.as_view(extra_context={}), name='login'), # TODO add extra context path('accounts/', include('django.contrib.auth.urls')), path('accounts/', include('django_registration.backends.activation.urls')), -] + path('accounts/login/', include('django.contrib.auth.urls')), + ] urlpatterns += [ path( - 'password-reset/', + 'password_reset/', auth_views.PasswordResetView.as_view(), name='password_reset' ),