checkout.html 537 B

1234567891011121314151617181920212223
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <form action="/charge" method="post">
  4. <article>
  5. <label>
  6. <span>Amount is $ {{ amount }}</span>
  7. </label>
  8. </article>
  9. <!-- Stripe Pay Button -->
  10. <!-- Sends payment token POST Req -->
  11. <script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
  12. data-key="{{ key }}"
  13. data-description="artFi Exchange Deposit"
  14. data-amount="{{ raw_amount }}"
  15. data-locale="auto">
  16. </script>
  17. </form>
  18. {% endblock %}