1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-11 13:01:17 +00:00

10 lines
163 B
Python
Raw Normal View History

2020-09-22 12:27:03 +02:00
from django.urls import path
from .views import SignupView
app_name = "registration"
urlpatterns = [
path("signup", SignupView.as_view(), name="signup"),
]