aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/payments/urls.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-03 17:10:23 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-03 17:10:23 +0000
commit3bcd728b0bd37c95865205a75ffbddfb2e086f90 (patch)
tree181a79c8e8b156509bfe03c34fd8ceff57382b20 /alphabetlearning/payments/urls.py
parent38f7a88a15f1278df6a44242e2e22814914beddb (diff)
First cut at email verification
Diffstat (limited to '')
-rw-r--r--alphabetlearning/payments/urls.py4
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
]