8 lines
319 B
Python
8 lines
319 B
Python
from django.urls import path
|
|
from accounts.views import RegisterView, LoginView, LogoutView
|
|
|
|
urlpatterns = [
|
|
path('register/', RegisterView.as_view(), name='account-register'),
|
|
path('login/', LoginView.as_view(), name='account-login'),
|
|
path('logout/', LogoutView.as_view(), name='account-logout'),
|
|
] |