from django.urls import path from .views import home, dashboard, SignUpView urlpatterns = [ path("", home, name="home"), path("dashboard/", dashboard, name="dashboard"), path("signup/", SignUpView.as_view(), name="signup"), ]