Files
Logic/Modules/Backend/auth/urls.py
T

11 lines
385 B
Python
Raw Normal View History

2026-05-11 03:27:21 +03:30
from django.urls import path
from .views import AuthenticationView, LoginView, RegisterView
urlpatterns = [
path("register/", RegisterView.as_view(), name="register"),
path("login/", LoginView.as_view(), name="login"),
# path("request-otp/", AuthenticationView.as_view(), name="request-otp"),
# path("verify-otp/", AuthenticationView.as_view(), name="verify-otp"),
]