add registration

This commit is contained in:
2021-03-13 13:40:41 -08:00
parent 5a052c2a56
commit ffa103e26c
6 changed files with 59 additions and 2 deletions

View File

@ -8,6 +8,7 @@ app_name = "accounts"
urlpatterns = [
path('login/', log_in, name='login'),
path('register/', views.register, name='register'),
path('logout/', views.log_out, name='logout'),
path('edit-profile/', views.edit_profile, name='edit_profile'),
path('password-change/', views.password_change, name='password_change'),