revbank-deposit/resources/welcome.html.j2
2025-04-11 22:57:16 +02:00

13 lines
263 B
Django/Jinja

<!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>