aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/payments/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/payments/urls.py')
-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
]