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

20 lines
378 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Toner Inventory</title>
</head>
<body>
<h1>Toner Inventory</h1>
<table border="1">
<thead>
<tr>
<th>Name</th>
<th>Quantity</th>
</tr>
</thead>
<tbody id="inventory"></tbody>
</table>
<script src="/static/script.js"></script>
</body>
</html>