diff --git a/templates/pro-signup.html b/templates/pro-signup.html index 1782ef0..79ff19d 100644 --- a/templates/pro-signup.html +++ b/templates/pro-signup.html @@ -35,7 +35,7 @@
Please wait…
- $3 USD will be charged to your card monthly. Also, you rock. Tell yourself that every month, too. + $5 USD will be charged to your card monthly. Also, you rock. Tell yourself that every month, too.
diff --git a/templates/pro.html b/templates/pro.html index 7557b80..a0e85c1 100644 --- a/templates/pro.html +++ b/templates/pro.html @@ -22,7 +22,7 @@ {% if request.user.profile.is_pro %}

You're already a Pro.

{% else %} -

Pro is only $3/month.

+

Pro is only $5/month.

Buy Now

{% endif %}
diff --git a/views.py b/views.py index 3b034dc..10ad9f9 100644 --- a/views.py +++ b/views.py @@ -104,7 +104,7 @@ def pro_signup_complete(request): token = request.POST['token'] stripe.api_key = STRIPE_SECRET_KEY - plan = 'snipt-pro-monthly' + plan = 'snipt-monthly' try: customer = stripe.Customer.create(card=token,