Skip to content

Commit

Permalink
fix: Update login page URL to '/login/'
Browse files Browse the repository at this point in the history
  • Loading branch information
devangspsingh committed Aug 11, 2024
1 parent b285378 commit 9523f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .views import login_page, google_login, google_callback, google_logout, profile

urlpatterns = [
path('', login_page, name='login_page'), # Default login page
path('login/', login_page, name='login_page'), # Default login page
path('oauth/login/', google_login, name='login'), # Google login URL
path('oauth/callback/', google_callback, name='callback'), # Google callback URL
path('logout/', google_logout, name='logout'), # Logout URL
Expand Down

0 comments on commit 9523f09

Please sign in to comment.