2022-07-27 06:01:33 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
2022-07-28 01:23:22 -04:00
|
|
|
<link rel="stylesheet" href="static/index.css"/>
|
2022-07-27 06:01:33 -04:00
|
|
|
<title>Product List</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
<h1 id="title">Product List</h1>
|
|
|
|
<div id="buttons">
|
2022-07-27 11:44:08 -04:00
|
|
|
<a href="add-product"><button>ADD</button></a>
|
2022-07-27 06:01:33 -04:00
|
|
|
<button id="delete-product-btn">MASS DELETE</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-27 06:59:59 -04:00
|
|
|
<div id="products">
|
|
|
|
</div>
|
2022-07-27 06:01:33 -04:00
|
|
|
</body>
|
2022-07-28 01:23:22 -04:00
|
|
|
<script src="static/index.js"></script>
|
2022-07-27 06:01:33 -04:00
|
|
|
</html>
|