Switch to monthly

master
Nick Sergeant 2012-08-11 10:12:13 -04:00
parent 6fe8d4ac8b
commit 3c8f043691
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
<form class="form-horizontal" id="pro-signup" method="post" action="/pro/signup/complete/">
<fieldset>
<div class="payment-loading"><span>Please wait&hellip;</span></div>
<legend>$19 USD will be charged to your card annually. Also, you rock. Tell yourself that every year, too.</legend>
<legend>$4 USD will be charged to your card monthly. Also, you rock. Tell yourself that every month, too.</legend>
<div class="payment-errors alert alert-error"></div>
<div class="control-group">
<label class="control-label" for="name">Name on card:</label>

View File

@ -29,7 +29,7 @@
{% if request.user.profile.is_pro %}
<h3>You're already a Pro. You know that ;)</h3>
{% else %}
<h3>Pro accounts are just $19/year.</h3>
<h3>Pro accounts are just $4/month.</h3>
<h4><a href="/pro/signup/" class="btn btn-large btn-success">Sign Up Now</a></h4>
{% endif %}
</div>

View File

@ -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
)