Files
iface_ecosio/templates/find_rejectedids.html
T

40 lines
760 B
HTML
Raw Normal View History

2026-02-25 10:24:12 +01:00
<!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>