2020-05-12 17:38:36 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
2020-05-13 05:28:53 +00:00
|
|
|
{% block title %}Pay with Stripe{% endblock %}
|
2020-05-12 17:38:36 +00:00
|
|
|
|
2020-05-15 23:18:19 +00:00
|
|
|
{% block head %}
|
|
|
|
{% if stripe_checkout_session_id %}
|
|
|
|
<script src="https://js.stripe.com/v3/"></script>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-05-12 17:38:36 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2020-05-22 20:20:26 +00:00
|
|
|
|
2020-05-12 17:38:36 +00:00
|
|
|
|
|
|
|
{% if stripe_checkout_session_id %}
|
2020-05-22 20:20:26 +00:00
|
|
|
<div class="row third-margin">
|
|
|
|
<h1>REDIRECTING...</h1>
|
|
|
|
</div>
|
|
|
|
<input id="stripe_public_key" type="hidden" value="{{ stripe_public_key }}"/>
|
|
|
|
<input id="stripe_checkout_session_id" type="hidden" value="{{ stripe_checkout_session_id }}"/>
|
|
|
|
<script src="{{ url_for('static', filename='pay-with-stripe.js') }}"></script>
|
|
|
|
{% else %}
|
|
|
|
<div class="row third-margin">
|
|
|
|
<h1>PAY WITH STRIPE</h1>
|
|
|
|
</div>
|
|
|
|
<div class="row half-margin">
|
|
|
|
<form method="post">
|
|
|
|
<div class="row justify-start">
|
|
|
|
<label for="dollars">$</label>
|
|
|
|
<input type="number" id="dollars" name="dollars"></input>
|
|
|
|
</div>
|
|
|
|
<div class="row justify-end">
|
|
|
|
<input type="submit" value="Pay With Stripe">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2020-05-12 17:38:36 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block pagesource %}/templates/stripe.html{% endblock %}
|