fix login url.

This commit is contained in:
aminhashemi92 2025-09-13 12:57:19 +03:30
parent 741536a227
commit f95beb726f
5 changed files with 21 additions and 4 deletions

View file

@ -4,7 +4,7 @@ from accounts.views import login_view, dashboard, customer_list, add_customer_aj
app_name = "accounts"
urlpatterns = [
path('login/', login_view, name='login'),
path('', login_view, name='login'),
path('logout/', logout_view, name='logout'),
path('dashboard/', dashboard, name='dashboard'),
path('customers/', customer_list, name='customer_list'),