diff --git a/authentication/urls.py b/authentication/urls.py index f5873d8..bea33ce 100644 --- a/authentication/urls.py +++ b/authentication/urls.py @@ -1,6 +1,7 @@ from django.urls import path from . import views +# Test comment urlpatterns = [ path('', views.home, name="home"), path('login/', views.login_user, name="login"), @@ -8,4 +9,4 @@ path('register/', views.register_user, name="register"), path('edit_profile/', views.edit_profile, name="edit_profile"), path('change_password/', views.change_password, name="change_password"), -] \ No newline at end of file +]