40 lines
760 B
HTML
40 lines
760 B
HTML
<!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>
|