diff --git a/pinaxcon/templates/registrasion/stripe/credit_card_payment.html b/pinaxcon/templates/registrasion/stripe/credit_card_payment.html new file mode 100644 index 0000000000000000000000000000000000000000..6bbaa86db73d5b3efe6fe9a3c1d4c3060bf3a8c7 --- /dev/null +++ b/pinaxcon/templates/registrasion/stripe/credit_card_payment.html @@ -0,0 +1,86 @@ +{% extends "site_base.html" %} +{% load bootstrap %} +{% load registrasion_tags %} + + +{% block scripts %} + {{ block.super }} + + {{ form.media }} + + + +{% endblock %} + +{% block body %} + +

Credit card payment for invoice #{{ invoice.id}}

+ +

You have ${{ invoice.balance_due }} remaining to pay on this invoice.

+ +

Credit card payments are processed by Stripe. + We do not store any of your credit card data locally, but instead Strip will securely tokenise your card details. To allow this, you must allow JavaScript from js.stripe.com.

+ +

Card details

+ +
+ + + + {% csrf_token %} + {{form|bootstrap}} + +
+{% endblock %}