Eh, make it $5.

master
Nick Sergeant 2016-05-10 16:19:43 -04:00
parent 37acfb27e0
commit 1eadd260fd
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
<form class="form-horizontal static-box" id="pro-signup" method="post" action="/account/activate/">
<fieldset>
<div class="info">
Activate for a one-time fee of <span>$9</span>.<br />
Activate for a one-time fee of <span>$5</span>.<br />
<small style="font-size: 14px; color: #C0C0C0;">(fully refundable within 3 days of signup)</small>
</div>
<div class="payment-form">

View File

@ -32,7 +32,7 @@ def activate(request):
try:
customer = stripe.Customer.create(card=token,
email=request.user.email)
stripe.Charge.create(amount=900,
stripe.Charge.create(amount=500,
currency='usd',
customer=customer.id,
description='Snipt.net')

View File

@ -22,7 +22,7 @@
{% endif %}
<fieldset>
<div class="info" style="line-height: 35px;">
Create an account for a one-time fee of <span>$9</span>.<br />
Create an account for a one-time fee of <span>$5</span>.<br />
<small style="font-size: 14px; color: #C0C0C0;">(fully refundable within 3 days of signup)</small>
</div>
<div style="padding-top: 30px;" class="control-group {% if form.errors.username %}error{% endif %}">