Skip to content

Commit

Permalink
updated code
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-gray-tangent committed Jul 19, 2024
1 parent a20899b commit 7bf2526
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions app/accounts/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,7 @@
app_name = "accounts"
urlpatterns = [
path("register/", views.register, name="accounts_register"),
# path("login/", auth_views.LoginView.as_view(template_name="accounts/login.html"), name="login"),
# path(
# "password_reset/",
# auth_views.PasswordResetView.as_view(
# template_name="accounts/password_reset_form.html",
# success_url="/accounts/password_reset/done/",
# ),
# name="password_reset",
# ),
path("login/", auth_views.LoginView.as_view(template_name="accounts/login.html"), name="login"),
path(
"password_reset/",
CustomPasswordResetView.as_view(),
Expand Down

0 comments on commit 7bf2526

Please sign in to comment.