10 lines
221 B
Python
10 lines
221 B
Python
from django.urls import path
|
|
|
|
from .views import LoginView, LogoutView
|
|
|
|
APP = "frontend"
|
|
|
|
urlpatterns = [
|
|
path('login/', LoginView.as_view(), name='login'),
|
|
path('logout/', LogoutView.as_view(), name='logout'),
|
|
]
|