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-07-08 02:04:23 +00:00
|
|
|
<p>NOTE: for now we have switched over to our beta BTCPay Server instance at https://beeteeceepae2.cyberia.club</p>
|
|
|
|
<p>In the future we'll migrate the DNS back over to btcpay.cyberia.club but for now this is easier.</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 %}
|