major updation

This commit is contained in:
2025-08-20 11:35:11 +05:30
parent a6f62de2c4
commit 27d013e853
19 changed files with 578 additions and 60 deletions
+3 -1
View File
@@ -5,6 +5,8 @@ from . import views
urlpatterns = [
path('', views.home, name='home'),
path('register/', views.register, name='register'),
path('login/', auth_views.LoginView.as_view(template_name='core/login.html'), name='login'),
path('login/', views.custom_login, name='login'),
path('logout/', auth_views.LogoutView.as_view(), name='logout'),
path('dashboard/', views.citizen_dashboard, name='citizen_dashboard'),
path('report-issue/', views.report_issue, name='report_issue'),
]