Files
Backend/auth/urls.py
T

11 lines
385 B
Python
Raw Normal View History

2026-02-19 01:19:22 +03:30
from django.urls import path
2026-03-23 22:24:30 +03:30
from .views import AuthenticationView, LoginView, RegisterView
2026-02-19 01:19:22 +03:30
urlpatterns = [
2026-03-23 22:24:30 +03:30
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"),
2026-02-19 01:19:22 +03:30
]