Files
Anthony Segura 6c8e869132 Style Update
2026-08-05 10:38:20 -05:00

33 lines
822 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Toner Inventory</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<div class="header">
<h1>Toner Inventory</h1>
{% if session.get("user") %}
<div>
Logged in as {{ session["user"] }} |
<a href="/logout">Logout</a>
</div>
{% endif %}
</div>
<table>
<thead>
<tr>
<th>Toner</th>
<th>Quantity</th>
</tr>
</thead>
<tbody id="inventory"></tbody>
</table>
</div>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>