Add some missing maxlength form options to prevent info overflow and result in error 500

This commit is contained in:
johnnyq
2026-08-02 16:08:01 -04:00
parent 3e532fc792
commit 89fba247c5
46 changed files with 104 additions and 104 deletions

View File

@@ -453,7 +453,7 @@ if (isset($_GET['invoice_id'])) {
<input type="hidden" name="item_order" value="<?= mysqli_num_rows($sql_invoice_items) + 1 ?>">
<td></td>
<td>
<input type="text" class="form-control" id="name" name="name" placeholder="Item" required>
<input type="text" class="form-control" id="name" name="name" placeholder="Item" maxlength="200" required>
</td>
<td>
<textarea class="form-control" rows="2" id="desc" name="description" placeholder="Enter a Description"></textarea>