mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-03-16 02:47:31 +00:00
10 lines
163 B
Python
10 lines
163 B
Python
from django.urls import path
|
|
|
|
from .views import SignupView
|
|
|
|
app_name = "registration"
|
|
|
|
urlpatterns = [
|
|
path("signup", SignupView.as_view(), name="signup"),
|
|
]
|