This commit is contained in:
2024-11-19 13:00:24 +07:00
commit 45e3c1f698
3462 changed files with 617437 additions and 0 deletions

16
accounts/urls.py Normal file
View File

@@ -0,0 +1,16 @@
from django.urls import path
from accounts.views import *
urlpatterns = [
path('admin/users/user-list', usersList, name="userList"),
path('admin/user/create', createUser, name="createUser"),
path('admin/edit-profile/<int:id>', editUserProfile, name='editUserProfile'),
path('admin/user/change-password/<int:id>', changePassword, name='changePassword'),
path('admin/user/delete/<int:id>', deleteUser, name='deleteUser'),
path('forgot-password/', initiate_password_reset, name='initiate_password_reset'),
path('reset_password/<uuid:token>/', reset_password, name='reset_password'),
path('login/', logIn, name='logIn'),
path('logout/', LogOut, name='LogOut'),
]