from django.urls import path from . import views urlpatterns = [ path('', views.home, name='home'), path('register/', views.register, name='register'), path('login/', views.login_view, name='login'), path('logout/', views.logout_view, name='logout'), path('dashboard/', views.dashboard, name='dashboard'), path('profile/edit/', views.profile_edit, name='profile_edit'), ]