Add new user registration
This commit is contained in:
parent
1ed03f7d53
commit
9e55b0a1ed
3 changed files with 60 additions and 0 deletions
|
@ -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'),
|
||||
]
|
||||
|
|
Reference in a new issue