added beginnings of stripe payment for subscriptions
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Live Stream</title>
|
||||
{% block header_config %}
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
{% block main_content %}
|
||||
|
||||
15
ui/templates/checkout.html
Normal file
15
ui/templates/checkout.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block header_config %}
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<script src="https://js.stripe.com/v3/"></script>
|
||||
<script src="{{ url_for('static', filename='checkout.js') }}" defer></script>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block main_content %}
|
||||
<!-- Display a payment form -->
|
||||
<div id="checkout">
|
||||
<!-- Checkout will insert the payment form here -->
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user