10 lines
204 B
Python
10 lines
204 B
Python
![]() |
from django.urls import path
|
||
|
|
||
|
from .views import *
|
||
|
|
||
|
app_name = "users"
|
||
|
urlpatterns = [
|
||
|
path("auth/login/", auth_login, name="auth_login"),
|
||
|
path("auth/logout/", auth_logout, name="auth_logout"),
|
||
|
]
|