22 lines
721 B
HTML
22 lines
721 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="static/stylesheet.css"/>
|
|
<title>Product List</title>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1 id="title">Product List</h1>
|
|
<div id="buttons">
|
|
<div class="header-button"><a href="add-product"><button>ADD</button></a></div>
|
|
<div class="header-button"><button id="delete-product-btn">MASS DELETE</button></div>
|
|
</div>
|
|
</div>
|
|
<div id="products">
|
|
</div>
|
|
</body>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
<script src="static/index.js"></script>
|
|
</html>
|