This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

16
accounts/urls.py Normal file
View File

@@ -0,0 +1,16 @@
from django.urls import path
from . import views
urlpatterns = [
path('register/', views.UserRegistrationView.as_view(), name='user-register'),
path('login/', views.UserLoginView.as_view(), name='user-login'),
path('logout/', views.LogoutView.as_view(), name='user-logout'),
path('profile/', views.UserProfileView.as_view(), name='user-profile'),
path('profile/settings/', views.UserProfileSettingsView.as_view(), name='user-profile-settings'),
path('email-settings/', views.EmailSettingsView.as_view(), name='email-settings'),
path('change-password/', views.PasswordChangeView.as_view(), name='change-password'),
path('verify-email/', views.EmailVerificationView.as_view(), name='verify-email'),
path('resend-verification/', views.ResendVerificationView.as_view(), name='resend-verification'),
path('login-attempts/', views.LoginAttemptsView.as_view(), name='login-attempts'),
path('stats/', views.user_stats, name='user-stats'),
]