from django.urls import path from . import views urlpatterns = [ path('', views.home, name="home"), path('register/', views.register, name='register'), path('activate///', views.activate_account, name='activate_account'), path('login/', views.user_login, name='login'), path('logout/', views.user_logout, name='logout'), path('hire/', views.hire_view, name='hire'), path('services/',views.services,name='services'), path('aboutus/',views.aboutus,name='aboutus'), path('profiles/',views.profie_View, name="profiles"), path('approve/',views.approve, name="approve"), path('complete/',views.complete, name="complete"), ]