-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashboard.html
68 lines (66 loc) · 2.43 KB
/
dashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="/favicon.png">
<title>Admin Dashboard</title>
<link rel="stylesheet" href="./styles/admin_login.css">
</head>
<body>
<div id="admin-navbar">
<div><a href="./index.html"><img src="https://searchlogovector.com/wp-content/uploads/2021/11/jcrew-logo-vector.png" alt=""></a></div>
<h3 id="h3">Admin Panel</h3>
<div class="inline">
<input id="selectMen" type="submit" value="Men">
<input id="selectWomen" type="submit" value="Women">
</div>
</div>
<div id="main">
<div id="left">
<h4 id="h4">Add Product</h4>
<input type="text" id="name" placeholder="Product Name">
<input type="number" id="price" placeholder="Product Price">
<input type="url" id="image" placeholder="Product Image URL">
<input type="number" id="quantity" placeholder="Total Quantity">
<input type="text" id="description" placeholder="Product Description">
<span>Category:</span>
<select name="" id="category">
<option value="sweater">Sweater</option>
<option value="jacket">Jacket</option>
<option value="pant">Pant</option>
<option value="shirt">Shirt</option>
<option value="tshirt">T-Shirt</option>
</select>
<span>Release Date:</span>
<input type="date" id="rDate">
<span>Section:</span>
<select name="" id="section">
<option value="men">men</option>
<option value="women">women</option>
</select>
<button id="add_product">Add Product</button>
</div>
<!-- <div id="admin-container"></div> -->
<table id="table">
<thead>
<tr>
<th class="big">Image</th>
<th class="big">Name</th>
<th>Price</th>
<th>Release Date</th>
<th>Total Quantity</th>
<th class="smalls">Remove</th>
<th class="smalls">Update Price</th>
<th class="big overflow">Description</th>
</tr>
</thead>
<tbody>
<!-- Append table rows here -->
</tbody>
</table>
</div>
</body>
</html>
<script src="./scripts/dashboard.js"></script>