diff --git a/accounts/templates/activate.html b/accounts/templates/activate.html index 9a5766c..1c77955 100644 --- a/accounts/templates/activate.html +++ b/accounts/templates/activate.html @@ -30,7 +30,7 @@
- Activate for a one-time fee of $9.
+ Activate for a one-time fee of $5.
(fully refundable within 3 days of signup)
diff --git a/accounts/views.py b/accounts/views.py index fdaf1a3..1aa13cd 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -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') diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html index 0dc5a34..3820458 100644 --- a/templates/registration/registration_form.html +++ b/templates/registration/registration_form.html @@ -22,7 +22,7 @@ {% endif %}
- Create an account for a one-time fee of $9.
+ Create an account for a one-time fee of $5.
(fully refundable within 3 days of signup)