diff --git a/main/urls.py b/main/urls.py index 4c18a4a..3ad739d 100644 --- a/main/urls.py +++ b/main/urls.py @@ -10,9 +10,9 @@ router.register(r'tasks', TaskViewSet) urlpatterns = [ path('api/', include(router.urls)), - path('accounts/login/', UserLoginView.as_view(), name='login'), - path('accounts/logout/', UserLogoutView.as_view(), name='logout'), - path('accounts/register/', UserRegistrationView.as_view(), name='welcome'), + path('login/', UserLoginView.as_view(), name='login'), + path('logout/', UserLogoutView.as_view(), name='logout'), + path('register/', UserRegistrationView.as_view(), name='welcome'), path('projects/create/', create_project, name='create_project'), path('projects//', project_dashboard, name='project_dashboard'), path('projects//tasks/create/', create_task, name='create_task'),