14 lines
445 B
Python
14 lines
445 B
Python
|
|
from django.urls import path
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
|
||
|
|
app_name = 'accounts'
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('login/', views.login, name='login'),
|
||
|
|
path('register/', views.register, name='register'),
|
||
|
|
path('logout/', views.logout, name='logout'),
|
||
|
|
path('profile/', views.profile, name='profile'),
|
||
|
|
path('password-change/', views.password_change, name='password_change'),
|
||
|
|
path('login-history/', views.login_history, name='login_history'),
|
||
|
|
]
|