mirror of
https://github.com/tjsga/scavenger-hunt-2022.git
synced 2025-04-09 23:00:16 -04:00
12 lines
241 B
Python
12 lines
241 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "auth"
|
|
|
|
urlpatterns = [
|
|
path("", views.index_view, name="index"),
|
|
path("login/", views.login_view, name="login"),
|
|
path("logout/", views.logout_view, name="logout"),
|
|
]
|