This commit is contained in:
hubobel 2026-06-20 16:00:31 +02:00
parent d6e6f01329
commit af9e2fc138
3 changed files with 178 additions and 0 deletions

66
templates/index.html Normal file
View file

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>ING Auswertung</title>
</head>
<body>
<h1>ING Auswertung</h1>
<hr>
<h2>Kontostand</h2>
<form action="/run/balance" method="post">
<button type="submit">
balance.py starten
</button>
</form>
<hr>
<h2>Transaktionen</h2>
<form action="/run/transactions" method="post">
Jahr:
<input type="text"
name="year"
placeholder="2026">
KW:
<input type="text"
name="week"
placeholder="25">
<button type="submit">
transactions.py starten
</button>
</form>
<hr>
<h2>Kategorisierung</h2>
<form action="/run/categorize" method="post">
Jahr:
<input type="text"
name="year"
placeholder="2026">
KW:
<input type="text"
name="week"
placeholder="25">
<button type="submit">
categorize_transactions.py starten
</button>
</form>
</body>
</html>