21 lines
449 B
HTML
21 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="static/index.css"/>
|
|
<title>Product List</title>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1 id="title">Product List</h1>
|
|
<div id="buttons">
|
|
<a href="add-product"><button>ADD</button></a>
|
|
<button id="delete-product-btn">MASS DELETE</button>
|
|
</div>
|
|
</div>
|
|
<div id="products">
|
|
</div>
|
|
</body>
|
|
<script src="static/index.js"></script>
|
|
</html>
|