- login now working (but not if refresh page
    - Starting singlepage
Django
    - Added path
This commit is contained in:
Kum1ta
2024-08-25 17:21:05 +02:00
parent 862ab1df4e
commit 9cf87cc69a
24 changed files with 292 additions and 238 deletions

View File

@ -18,5 +18,6 @@ from django.urls import path
from . import views
urlpatterns = [
path("",views.index, name='patate')
path("",views.index, name='patate'),
path("homePage",views.homePage, name='homePage'),
]