forked from 3wordchant/capsul-flask
capsulflask
btcpay
schema_migrations
shell_scripts
static
templates
about-ssh.html
account-balance.html
admin.html
base.html
btcpay.html
capsul-detail.html
capsuls.html
changelog.html
create-capsul.html
display-metric.html
faq.html
index.html
keys.html
login-landing.html
login.html
pricing.html
stripe.html
support.html
__init__.py
admin.py
auth.py
cli.py
console.py
db.py
db_model.py
http_client.py
hub_api.py
hub_model.py
landing.py
metrics.py
payment.py
publicapi.py
shared.py
spoke_api.py
spoke_model.py
docs
.gitignore
LICENSE.md
Pipfile
Pipfile.lock
README.md
app.py
letsencrypt-root-ca.crt
setup.cfg
setup.py
38 lines
925 B
HTML
38 lines
925 B
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>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>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block pagesource %}/templates/btcpay.html{% endblock %}
|