35 lines
938 B
Django/Jinja
35 lines
938 B
Django/Jinja
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<title>Revbank Deposit</title>
|
|
</head>
|
|
<body>
|
|
<h1>Bitlair Bartegoed Kopen</h1>
|
|
|
|
<form method="post" action="/">
|
|
<p>Met hoeveel wil je opwaarderen?</p>
|
|
{% for amount in [16, 32, 64, 128] -%}
|
|
<label class="pay-option pay-preset">
|
|
€ {{ amount }},-
|
|
<input type="submit" name="amount" value="{{ amount }}" />
|
|
</label>
|
|
{%- endfor %}
|
|
</form>
|
|
|
|
<form method="post" action="/">
|
|
<p>Iets anders?</p>
|
|
|
|
<label class="pay-option pay-custom">
|
|
€
|
|
<input name="amount" required maxlength="6" pattern="[0-9]+(?:[,.][0-9]{2})?" title="42 of 42.00 of 42,00" type="text" placeholder="13,37" />
|
|
</label><!--
|
|
--><input type="submit" value="Verder" />
|
|
</form>
|
|
|
|
<footer>
|
|
<a href="https://bitlair.nl">bitlair.nl</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|