You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
634 B
31 lines
634 B
|
|
|
|
{% 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"></input> |
|
</div> |
|
</form> |
|
</div> |
|
|
|
|
|
{% endblock %} |
|
|
|
{% block pagesource %}/templates/btcpay.html{% endblock %}
|
|
|