diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-03 17:10:23 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-03 17:10:23 +0000 |
commit | 3bcd728b0bd37c95865205a75ffbddfb2e086f90 (patch) | |
tree | 181a79c8e8b156509bfe03c34fd8ceff57382b20 /alphabetlearning/payments/urls.py | |
parent | 38f7a88a15f1278df6a44242e2e22814914beddb (diff) |
First cut at email verification
Diffstat (limited to '')
-rw-r--r-- | alphabetlearning/payments/urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/alphabetlearning/payments/urls.py b/alphabetlearning/payments/urls.py index 12f445d..38393e0 100644 --- a/alphabetlearning/payments/urls.py +++ b/alphabetlearning/payments/urls.py @@ -21,7 +21,9 @@ urlpatterns = [ path("landing/", views.ProductLandingPageView.as_view(), name="landing"), path("delete-cart-item/<int:pk>", views. DeleteCartItem.as_view(), name="delete_cart_item"), path("webhooks/stripe/", views.stripe_webhook, name="stripe-webhook"), - path("email_signup/", views.email_signup, name="email_signup"), + # path("email_signup/", views.email_signup, name="email_signup"), + path("email-sign-up-verification/", views.email_signup_verification, name="email_signup_verification"), + path("verify-email/<str:token>/", views.verify_email, name="verify_email"), path("success_email_signup/", views.SuccessEmailSignupView.as_view(), name="success_email_signup"), path('privacy-policy/', privacy_policy, name='privacy_policy'), # Add this line ] |