Initial commit

This commit is contained in:
polyfloyd 2025-04-11 22:56:14 +02:00
commit 38b19c0463
7 changed files with 863 additions and 0 deletions

11
resources/return.html.j2 Normal file
View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Revbank Deposit</title>
</head>
<body>
<p>Scan this code:</p>
{{ qr_svg | safe }}
<pre>{{ code }}</pre>
</body>
<html>

13
resources/welcome.html.j2 Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Revbank Deposit</title>
</head>
<body>
<form method="post" action="/">
{% for amount in [10, 20, 40, 80] -%}
€ <input type="submit" name="amount" value="{{ amount }}" />
{% endfor -%}
</form>
</body>
<html>