1
0
Fork 0

Basic site functionality (add, delete, search) withouth added vulns

This commit is contained in:
Vili Sinervä 2024-11-24 17:58:53 +02:00
parent d9a41f82bb
commit efee16df40
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
6 changed files with 139 additions and 11 deletions

View file

@ -19,6 +19,9 @@ from notes import views
urlpatterns = [
path('', views.index, name='index'),
path('add/', views.add, name='add'),
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/logout/', views.logout_view, name='logout'),
]