mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 22:53:03 +00:00
11 lines
167 B
Python
11 lines
167 B
Python
from django.urls import path
|
|
|
|
from .views import CreateUserView
|
|
|
|
|
|
app_name = "member"
|
|
|
|
urlpatterns = [
|
|
path('signup/', CreateUserView.as_view(), name="signup"),
|
|
]
|