-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
55 lines (48 loc) · 1.46 KB
/
product.html
File metadata and controls
55 lines (48 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manage Products</title>
<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
<link href = "icons/css/all.min.css">
<link href="product-css.css" rel="stylesheet">
<script src="jquery.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
<script src = "icons/js/all.min.js"></script>
</head>
<body>
<div id = "navbar">
</div>
<div class="container-fluid" id = "content">
<h2 class = "d-inline p-2 align-middle">
Product
</h2>
<div class = "d-inline p-2 align-middle">
<button class = "btn btn-primary" id = "addProduct">
<span><a>+</a> Add</span>
</button>
</div>
<div class="input-group d-flex justify-content-end">
<label>
Search:
</label>
<input type="text" name = "search" id = "searchProduct">
</div>
<br>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Cost</th>
<th>Stock</th>
<th>Action</th>
</tr>
</thead>
<tbody class = "productList">
</tbody>
</table>
</div>
<script src = "product-js.js"></script>
</body>
</html>