2025-08-03 10:28:43 +09:00
|
|
|
# C_accounts/urls.py
|
|
|
|
|
from django.urls import path
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
|
|
app_name = 'accounts'
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path('profile_edit/', views.profile_edit, name='custom_profile_edit'),
|
|
|
|
|
path('password_change/', views.password_change, name='password_change'),
|
|
|
|
|
path('password_reset/', views.password_reset, name='password_reset'),
|
|
|
|
|
path('password_change_logged_in/', views.password_change_logged_in, name='password_change_logged_in'),
|
|
|
|
|
path('force_password_set/', views.force_password_set, name='force_password_set'),
|
2025-08-23 19:00:21 +09:00
|
|
|
path('withdrawal_request/', views.withdrawal_request, name='withdrawal_request'),
|
2025-08-03 10:28:43 +09:00
|
|
|
]
|