Première implementation de sso

This commit is contained in:
2026-08-03 13:05:09 +00:00
commit a494199820
31 changed files with 440 additions and 0 deletions

7
authentification/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from .views import login_view, deconnexion_view
urlpatterns = [
path('login/', login_view, name='login'),
path('deconnexion/', deconnexion_view, name='deconnexion'),
]