Files
AVEX-Toner-Inventory-System/templates/admin.html
Anthony Segura 4b2407b6ca init
2026-08-05 10:35:03 -05:00

22 lines
482 B
HTML

<h1>Admin Panel</h1>
<h3>Add Toner</h3>
<input id="name" placeholder="Toner Name">
<input id="qty" type="number" placeholder="Quantity">
<button onclick="addItem()">Add</button>
<h3>Update Inventory</h3>
<table border="1">
<thead>
<tr>
<th>Name</th>
<th>Quantity</th>
<th>Update</th>
</tr>
</thead>
<tbody id="adminInventory"></tbody>
</table>
<a href="/logout">Logout</a>
<script src="/static/script.js"></script>