This repository has been archived on 2025-04-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GestionaleITSPy/GestionaleITS/accounts/urls.py
2024-10-09 21:10:49 +02:00

7 lines
159 B
Python

from django.urls import path
from .views import RegistrationView
urlpatterns = [
path("registration", RegistrationView.as_view(), name="registration" )
]