Initial commit

This commit is contained in:
2021-03-09 20:32:57 +01:00
commit 0420b3efbd
56 changed files with 94426 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{{define "header_additions"}}
<script src="https://js.stripe.com/v3/"></script>
{{end}}
{{define "body_content"}}
<p class="title is-4">Checkout</p>
<p id="charge_data" hidden>0002CC01000003F7:2</p>
<div id="card-element">
<!-- Elements will create input elements here -->
</div>
<!-- We'll put the error messages in this element -->
<div id="card-errors" role="alert"></div>
<button id="submit">Pay</button>
<script src="static/js/checkout.js"></script>
{{end}}