* [fix] setting page for stripe * checkout flow for stripe payment * controller to handle stripe checkout and authorization
28 lines
No EOL
599 B
HTML
28 lines
No EOL
599 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %} Payment {% endblock %}
|
|
|
|
{%- block header -%}{% endblock %}
|
|
|
|
{% block script %}
|
|
<script src="https://checkout.stripe.com/checkout.js"></script>
|
|
<script>{% include "templates/includes/integrations/stripe_checkout.js" %}</script>
|
|
{% endblock %}
|
|
|
|
{%- block page_content -%}
|
|
|
|
<p class='lead text-center centered'>
|
|
<span class='stripe-loading'>Loading Payment System</span>
|
|
<span class='stripe-confirming hidden'>Confirming Payment</span>
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% block style %}
|
|
<style>
|
|
header, footer {
|
|
display: none;
|
|
}
|
|
|
|
</style>
|
|
{% endblock %} |