academon/core/urls/auth.py
2022-08-08 09:43:31 +00:00

9 lines
208 B
Python

from django.urls import path
from ..views import LoginView, OTPView
urlpatterns = [
path("login/", LoginView.as_view(), name="login"),
path("login/checkotp/", OTPView.as_view(), name="checkotp"),
]