Mon commit initial
This commit is contained in:
11
authentification/urls.py
Normal file
11
authentification/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
"""Routes pour l'authentification des utilisateurs."""
|
||||
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = "authentification"
|
||||
|
||||
urlpatterns = [
|
||||
path("connexion", views.connexion, name="login"),
|
||||
path("deconnexion", views.deconnexion, name="deconnexion"),
|
||||
]
|
||||
Reference in New Issue
Block a user