33 lines
822 B
HTML
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> |