Make 'Product Add' page
This commit is contained in:
@@ -1,20 +1,21 @@
|
||||
<!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>
|
||||
<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>
|
||||
|
Reference in New Issue
Block a user