from django.urls import path
from . import views

app_name = 'accounts'

urlpatterns = [
    path('request-otp/', views.request_otp_view, name='request_otp'),
    path('verify-otp/', views.verify_otp_view, name='verify_otp'),
    path('complete-profile/', views.complete_profile_view, name='complete_profile'),
    path('resend-otp/', views.resend_otp_view, name='resend_otp'),
    path('logout/', views.logout_view, name='logout'),
]