scandiweb-products/static/index.html

22 lines
721 B
HTML
Raw Permalink Normal View History

2022-07-27 06:01:33 -04:00
<!DOCTYPE html>
<html>
2022-07-28 08:16:55 -04:00
<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>
2022-07-27 06:01:33 -04:00
</html>