This commit is contained in:
2025-03-13 22:08:06 +01:00
commit bab5571428
93 changed files with 4323 additions and 0 deletions

9
app/user/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from .views import UserLoginView, RegisterView
app_name = "user"
urlpatterns = [
path("login/", UserLoginView.as_view(), name="login"),
path("register/<uuid:token>/", RegisterView.as_view(), name="register"),
]