Release 1.0.0

This commit is contained in:
2026-02-25 10:24:12 +01:00
parent 44fb66adfc
commit c033456bf8
35 changed files with 4891 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
<!doctype html>
<html>
<head>
<title>Rejected IDs</title>
<style>
table { border-collapse: collapse; }
th, td { padding: 6px 10px; border: 1px solid #ccc; }
input { width: 80px; }
</style>
</head>
<body>
<h2>Find Rejected IDs</h2> <br/>
<form method="post">
<table>
<tr>
<td>For invoices created later than: </td>
<td><input type="text" name="date" placeholder="YYMMDD"></td>
</tr>
<tr>
<td>For countrycode:</td>
<td><input type="text" name="countrycode" placeholder="XX"></td>
</tr>
<tr>
<td>For invoice-ids:</td>
<td><textarea name="invoices" rows="9" cols="50"></textarea></td>
</tr>
<tr>
<td></td>
<td><button type="submit">Find</button></td>
</tr>
</table>
</form>
</body>
</html>