capsul-flask/capsulflask/templates/btcpay.html

42 lines
1.1 KiB
HTML

{% 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">
<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"></button>
</div>
<div class="row">
<div>
<p>Our BTCPay Server instance is finally back online!!</p>
<p>If you would like to pay with Monero but the option isn't avaliable yet,
that's because our Monero node is still syncing its blockchain.
It should be finished by Friday, December 17nth. Monero is really slow to sync!
In the mean time, if you would like to make a Monero payment, contact support@cyberia.club</p>
</div>
</div>
</form>
</div>
{% endblock %}
{% block pagesource %}/templates/btcpay.html{% endblock %}