1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-05 05:04:04 +02:00

Login is possible

This commit is contained in:
Yohann D'ANELLO
2020-04-29 15:29:01 +02:00
parent 93735da1a4
commit eead385218
19 changed files with 904 additions and 97 deletions

10
apps/member/urls.py Normal file
View File

@ -0,0 +1,10 @@
from django.urls import path
from .views import CreateUserView
app_name = "member"
urlpatterns = [
path('signup/', CreateUserView.as_view(), name="signup"),
]