10 lines
277 B
Python
10 lines
277 B
Python
from django.urls import path
|
|
from .views import *
|
|
|
|
app_name = "users"
|
|
urlpatterns = [
|
|
path('register/', UserRegisterView.as_view(), name='register'),
|
|
path('login/', UserLoginView.as_view(), name='login'),
|
|
path('logout/', UserLogoutView.as_view(), name='logout'),
|
|
]
|