from django.contrib.auth.views import LogoutView from django.urls import path from .views import * urlpatterns = [ path('', Index.as_view(), name='index'), path('service', AllService.as_view(), name='all'), path('register', Registration.as_view(), name='registration'), path('login', LoginView.as_view(), name='login'), path('logout', LogoutView.as_view(), name='logout'), path('profile/', Profile.as_view(), name='profile') ]