You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
976 B
30 lines
976 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>ELAB Inventory</title>
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
|
crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
</head>
|
|
<body>
|
|
<h1>ELAB Inventory Manager</h1>
|
|
<div class="filter-container">
|
|
<input type="text" id="filter-textbox" placeholder="Filter">
|
|
</div>
|
|
<table id="inventory-table">
|
|
<tr>
|
|
<th>Description</th>
|
|
<th>Price</th>
|
|
<th>Quantity</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |