Setup basic auth

This commit is contained in:
Edgar P. Burkhart 2025-06-13 15:51:32 +02:00
parent 3294ef2a82
commit d7545ab43c
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
17 changed files with 315 additions and 4 deletions

8
base/urls.py Normal file
View file

@ -0,0 +1,8 @@
from django.urls import include, path
from . import views
urlpatterns = [
path("", views.HomePageView.as_view(), name="index"),
path("accounts/", include("django.contrib.auth.urls")),
]