Include Registration Page

This commit is contained in:
jvs
2025-01-24 16:50:07 +01:00
parent 0bfc19bbf9
commit 421d287d48
3 changed files with 5 additions and 0 deletions

View File

@@ -7,4 +7,5 @@ urlpatterns = [
path('', views.home, name='home'),
path('logout/', LogoutView.as_view(next_page='login'), name='logout'),
path('login/', LoginView.as_view(template_name='accounts/login.html', next_page='home'), name='login'),
path('register/', views.register, name='register'),
]