2018-10-16 18:25:50 +00:00
|
|
|
# The different URLs this service does use
|
2018-10-09 17:49:47 +00:00
|
|
|
from django.urls import path
|
|
|
|
from django.conf.urls import url
|
|
|
|
from django.contrib import admin
|
|
|
|
|
2018-10-16 18:25:50 +00:00
|
|
|
# Import the classes for the views
|
2018-10-15 15:52:15 +00:00
|
|
|
from .views import Register, ChangeData, ChangePassword, ResetPassword, DeleteAccount, Index, LogOut, ResetRequest
|
2018-10-09 17:49:47 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('register/', Register.as_view(), name="register"),
|
|
|
|
path('changedata/', ChangeData.as_view(), name="change_data"),
|
|
|
|
path('resetpassword/', ResetPassword.as_view(), name="reset_password"),
|
|
|
|
path('changepassword/', ChangePassword.as_view(), name="change_password"),
|
|
|
|
path('deleteaccount/', DeleteAccount.as_view(), name="account_delete"),
|
2018-10-14 15:48:11 +00:00
|
|
|
path('index/', Index.as_view(), name="index"),
|
2018-10-14 17:21:17 +00:00
|
|
|
path('logout/', LogOut.as_view(), name="logout"),
|
2018-10-15 15:52:15 +00:00
|
|
|
path('reset/<str:user>/<str:token>/', ResetRequest.as_view()),
|
|
|
|
path('reset/', ResetRequest.as_view(), name="reset"),
|
2018-10-14 19:40:36 +00:00
|
|
|
path('', Index.as_view(), name="index"),
|
2018-10-09 17:49:47 +00:00
|
|
|
]
|