Files
2026-02-25 10:24:12 +01:00

40 lines
800 B
HTML

<!doctype html>
<html>
<head>
<title>Monthly Report</title>
<style>
table { border-collapse: collapse; }
th, td { padding: 6px 10px; border: 1px solid #ccc; }
input { width: 80px; }
</style>
</head>
<body>
<h2>Monthly Report</h2> <br/>
<form method="post">
<table>
<tr>
<td>Countrycode:</td>
<td><input type="text" name="countrycode" placeholder="XX"></td>
</tr>
<tr>
<td>For sales created in month:</td>
<td><input type="text" name="month" placeholder="YYYYMM"></td>
</tr>
<tr>
<td>Include invoices not reported before that month:</td>
<td><input type="checkbox" name="include_older" value="1" checked></td>
</tr>
<tr>
<td></td>
<td><button type="submit">Download CSV file</button></td>
</tr>
</table>
</form>
</body>
</html>