Style Update

This commit is contained in:
Anthony Segura
2026-08-05 10:38:20 -05:00
parent 4b2407b6ca
commit 6c8e869132
5 changed files with 146 additions and 36 deletions

View File

@@ -2,19 +2,32 @@
<html>
<head>
<title>Toner Inventory</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Toner Inventory</h1>
<table border="1">
<thead>
<tr>
<th>Name</th>
<th>Quantity</th>
</tr>
</thead>
<tbody id="inventory"></tbody>
</table>
<div class="container">
<div class="header">
<h1>Toner Inventory</h1>
<script src="/static/script.js"></script>
{% 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>