web_defender/Accounts/urls.py
2024-12-09 13:43:16 +05:30

14 lines
505 B
Python

from django.urls import path
from .import views
from .views import*
urlpatterns = [
path('signup',views.tech4biz_Signup,name="signup"),
path('',views.tech4biz_Login,name="login"),
path('logout',views.user_logout,name="logout"),
path('otp_verification',views.otp_verification,name="otp_verification"),
path('profile',views.profile,name="profile"),
path('user-details-and-device-pods/', get_user_details_and_device_pods, name='user_details_and_device_pods'),
]