la-chariotte/la_chariotte/accounts/urls.py
SimGetti 9e5fad85d3 Allow access to signup page
Delete also the version_beta page
2023-08-17 10:38:50 +02:00

10 lines
266 B
Python

from django.urls import include, path
from django.views.generic import TemplateView
from . import views
app_name = "accounts"
urlpatterns = [
path("inscription/", views.SignUpView.as_view(), name="signup"),
path("", include("django.contrib.auth.urls")),
]