-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurls.py
15 lines (13 loc) · 788 Bytes
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.urls import path
from .views import *
from django.contrib.auth import views as auth_views
urlpatterns = [
# path('login/', seconduser_login, name='seconduser_login'),
# path('logout/', seconduser_logout, name='seconduser_logout'),
# path('register/', seconduser_register, name='seconduser_register'),
# path('', index, name='index'),
path('password_reset/', SecondUserPasswordResetView.as_view(), name='password_reset'),
path('password_reset/done/', SecondUserPasswordResetDoneView.as_view(), name='password_reset_done'),
path('reset/<str:uidb64>/<str:token>/', SecondUserPasswordResetConfirmView.as_view(), name='password_reset_confirm'),
path('reset/done/', SecondUserPasswordResetCompleteView.as_view(), name='password_reset_complete'),
]