14 lines
505 B
Python
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'),
|
|
|
|
]
|