1
0
Fork 0

Add new user registration

This commit is contained in:
Vili Sinervä 2024-11-25 16:19:05 +02:00
parent 1ed03f7d53
commit 9e55b0a1ed
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
3 changed files with 60 additions and 0 deletions

View file

@ -23,5 +23,6 @@ urlpatterns = [
path('remove/<int:note_id>/', views.remove, name='remove'),
path('search/', views.search, name='search'),
path('accounts/login/', views.login_view, name='login'),
path('accounts/register/', views.register_view, name='register'),
path('accounts/logout/', views.logout_view, name='logout'),
]