-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproduct.html
116 lines (111 loc) · 3.24 KB
/
product.html
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
<!---This page is the Products Details page of Admin side that displays the data of product of the website. This can be considered as Read of CRUD Operation-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="product.css">
<link rel="shortcut icon" href="images/logo5.jpg" type="image/x-icon">
<title>Fashion Hub | Admin Dashboard</title>
<link rel="shortcut icon" href="/images/favicon.jpg" type="image/x-icon">
</head>
<body>
<!--------------------------- Sidebar starts here------------------------------>
<section id="sidebar">
<a href="#" class="Admin">
<i class='bx bxs-crown' ></i>
<span class="text">Admin</span>
</a>
<ul class="side-menu top">
<li>
<a href="admin.html">
<i class='bx bxs-dashboard' ></i>
<span class="text">Dashboard</span>
</a>
</li>
<li>
<a href="user.html">
<i class='bx bxs-user-detail'></i>
<span class="text">Users</span>
</a>
</li>
<li class="active">
<a href="product.html">
<i class='bx bxs-box'></i>
<span class="text">Products</span>
</a>
</li>
<li>
<a href="add.html">
<i class='bx bx-plus-medical' ></i>
<span class="text">Add / Update</span>
</a>
</li>
<li>
<a href="manage.html">
<i class='bx bxs-data' ></i>
<span class="text">Manage Product</span>
</a>
</li>
</ul>
<ul class="side-menu">
<li>
<a href="login.html" class="logout">
<i class='bx bxs-log-out-circle'></i>
<span class="text">Logout</span>
</a>
</li>
</ul>
</section>
<!--------------------------- Sidebar ends here------------------------------>
<!------------------------ Content part starts here--------------------------->
<section id="content">
<!--------------------------- Navbar starts here------------------------------>
<nav>
<i class='bx bx-menu' onclick="menutoggle()"></i>
<a href="#" class="nav-link">Products</a>
<form action="#">
<div class="form-input">
<input type="search" placeholder="Search...">
<button type="submit" class="search-btn"><i class='bx bx-search' ></i></button>
</div>
</form>
</nav>
<!--------------------------- Navbar ends here------------------------------>
<!-------------------- Products details section starts here-------------------->
<main>
<div class="head-title">
<div class="left">
<h1>Product Details</h1>
</div>
</div>
<div class="table-data">
<div class="order">
<div class="head">
<h3>PRODUCTS</h3>
<i class='bx bx-search' ></i>
<i class='bx bx-filter' ></i>
</div>
<table>
<thead>
<tr>
<th>Product ID</th>
<th>Brand</th>
<th>Name</th>
<th>Product Type</th>
<th>Price</th>
<th>Image</th>
</tr>
</thead>
<tbody id="ProductDetails">
</tbody>
</table>
</div>
</main>
<!-------------------- Products details section ends here-------------------->
</section>
<!------------------------ Content part ends here--------------------------->
<script src="product.js"></script>
</body>
</html>