capsul-flask/capsulflask/templates/btcpay.html

32 lines
634 B
HTML
Raw Permalink Normal View History

2020-05-13 05:28:53 +00:00
{% extends 'base.html' %}
{% block title %}Pay with Cryptocurrency{% endblock %}
{% block content %}
<div class="row third-margin">
<h1>Pay with Cryptocurrency</h1>
</div>
<div class="row half-margin">
<form method="POST" action="/payment/btcpay">
2020-05-13 05:28:53 +00:00
<div class="row">
<span>
<label for="btcpay-input-price">$</label>
<input
id="btcpay-input-price"
name="dollars"
type="text"
/>
</span>
<input type="submit" value="Pay with BtcPay"></input>
2020-05-13 05:28:53 +00:00
</div>
</form>
</div>
{% endblock %}
{% block pagesource %}/templates/btcpay.html{% endblock %}