-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathinventory.html
More file actions
122 lines (119 loc) · 3.88 KB
/
Copy pathinventory.html
File metadata and controls
122 lines (119 loc) · 3.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title></title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./assets/css/global.css" />
<link rel="stylesheet" href="./assets/css/inventory.css" />
<script
src="https://kit.fontawesome.com/f673f835d1.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="status"></div>
</div>
<div class="wrapper">
<!-- header section -->
<header class="inventory-header">
<div class="header-logo">
<a href="./index.html">
<img src="./assets/Images/Group 15.png" alt="logo image"
/></a>
</div>
<div class="header__avatar">
<div class="header__avatar-add">
<a href="#">
<img src="./assets/Images/Group 16.svg" alt="cart image" />
</a>
</div>
<div class="header__avatar-image">
<img src="./assets/Images/Mask Group.svg" alt="profile image" />
</div>
<div class="header__avatar-text">
<h3>
John Doe <br />
<span>ADMINISTRATOR</span>
</h3>
</div>
</div>
</header>
<!-- end of header section -->
<!-- input section -->
<section class="input__section">
<div class="input__section-header">
<h3>
<span><i class="fas fa-truck-moving"></i></span>Inventory List
</h3>
</div>
<form action="#">
<div class="input__section__container">
<input
type="text"
class="input__section-input"
placeholder="Find product"
/>
<button class="input__section-button">
<span><i class="fas fa-search"></i></span>Search
</button>
<a
href="./add_product.html"
id="add_product_btn"
class="input__section-button"
><i class="fas fa-plus"></i>Add Product</a
>
</div>
</form>
</section>
<!-- end of input section -->
<!-- table section -->
<section class="data-table">
<table class="section__table">
<thead class="section__table-head">
<tr>
<th>Name</th>
<th>Category</th>
<th>Quantity</th>
<th>Selected</th>
<th>Price($)</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody id="inventory"></tbody>
</table>
</section>
<!-- pagination markup -->
<div class="pagination-buttons">
<div class="next-table next-table--prev">
<p><i class="fas fa-angle-double-left"></i>prev</p>
</div>
<div class="next-table">
<p>next<i class="fas fa-angle-double-right"></i></p>
</div>
</div>
<!-- end of pagination markup -->
</div>
<!-- jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<!-- Sweet Alert -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- Axios -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.20.0-0/axios.min.js"></script>
<script src="./assets/js/inventory.js"></script>
</body>
</html>