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">
|
|
|
|
|
2020-05-14 23:03:00 +00:00
|
|
|
<form method="POST" action="/payment/btcpay">
|
2020-05-13 05:28:53 +00:00
|
|
|
<div class="row">
|
2021-07-08 02:12:31 +00:00
|
|
|
<span>
|
|
|
|
<label for="btcpay-input-price">$</label>
|
|
|
|
<input
|
|
|
|
id="btcpay-input-price"
|
|
|
|
name="dollars"
|
|
|
|
type="text"
|
|
|
|
/>
|
|
|
|
</span>
|
2021-07-08 02:04:23 +00:00
|
|
|
<input type="submit" value="Pay with BtcPay"></button>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2021-07-08 02:12:31 +00:00
|
|
|
<div>
|
2021-12-14 07:52:46 +00:00
|
|
|
<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>
|
2021-07-08 02:12:31 +00:00
|
|
|
</div>
|
2020-05-13 05:28:53 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block pagesource %}/templates/btcpay.html{% endblock %}
|