Skip to content

Commit

Permalink
Fixed Issue: sibtc#2
Browse files Browse the repository at this point in the history
  • Loading branch information
PiyushDive committed Oct 7, 2023
1 parent c29215f commit 79e4b55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions login/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

urlpatterns = [
url(r'^$', TemplateView.as_view(template_name='home.html'), name='home'),
url(r'^login/$', auth_views.login, {'template_name': 'login.html'}, name='login'),
url(r'^logout/$', auth_views.logout, {'template_name': 'logged_out.html'}, name='logout'),
url(r'^login/$', auth_views.LoginView, {'template_name': 'login.html'}, name='login'),
url(r'^logout/$', auth_views.LogoutView, {'template_name': 'logged_out.html'}, name='logout'),
]

0 comments on commit 79e4b55

Please sign in to comment.