You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
282 B
Python

1 year ago
# abac/urls.py
from django.contrib.auth import views as auth_views
from django.urls import path
from .views import landing_page
urlpatterns = [
path('login/', auth_views.LoginView.as_view(template_name='login.html'), name='login'),
path('', landing_page, name='home'),
]