Style Update
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user