diff --git a/templates/pro-signup.html b/templates/pro-signup.html index dbe5992..911bd69 100644 --- a/templates/pro-signup.html +++ b/templates/pro-signup.html @@ -27,7 +27,7 @@
Please wait…
- $19 USD will be charged to your card annually. Also, you rock. Tell yourself that every year, too. + $4 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 ce6c566..6863359 100644 --- a/templates/pro.html +++ b/templates/pro.html @@ -29,7 +29,7 @@ {% if request.user.profile.is_pro %}

You're already a Pro. You know that ;)

{% else %} -

Pro accounts are just $19/year.

+

Pro accounts are just $4/month.

Sign Up Now

{% endif %}
diff --git a/views.py b/views.py index e5c67f1..f140a09 100644 --- a/views.py +++ b/views.py @@ -108,7 +108,7 @@ def pro_signup_complete(request): customer = stripe.Customer.create( card = token, - plan = 'snipt-pro', + plan = 'snipt-pro-monthly', email = request.user.email )