forked from Swapnil887/incompetent-coil-1138
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_panel.html
More file actions
76 lines (62 loc) · 2.59 KB
/
admin_panel.html
File metadata and controls
76 lines (62 loc) · 2.59 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
<!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">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="CSS/admin._panel.css" />
</head>
<body>
<div id="navBar">
<div class="image"><img style=" width:100% ;padding-top: 5px" src="images/logo_new.png" alt=""></div>
<div id="left_section">
<div class="left">
<a href="admin_panel.html"><h3> All Product</h3></a>
</div>
<div class="left">
<a href="admin_man.html"><h3> Manage Product</h3></a>
</div>
<div class="left">
<a href="admin_dashbord.html"><h3> Dashboard</h3></a>
</div>
<div class="left">
<a href="a.notif.html"><h3>See Stocks</h3></a>
</div>
</div>
<div id="right_section">
<div class="right">Add Offers</div>
<div class="right">Your Profile</div>
<div class="right">Resolve Help?</div>
</div>
</div>
<!---- <div class="update">
<div class="add_new">
<h1 class="hea">ADD PRODUCT</h1>
<form id="new_product">
<h1 class="hadd">ENTER IMAGE URL</label>
<input id="img_url" placeholder="Enter Image url"type="url">
<h1 class="hadd">ENTER PRODUCT NAME</label>
<input id="name" placeholder="Enter Product Name"type="text">
<h1 class="hadd">ENTER PRODUCT PRICE</label>
<input id="price" placeholder="Enter Product Price" type="number">
<h1 class="hadd">ENTER PRODUCT DESCRIPTION</label>
<input id="des" placeholder="Enter Product Description"type="text">
<input id="add" value="Add Product" type="submit">
</form>
</div>
<div class="delete">
<h1 class="hea">DELETE PRODUCT</h1>
<form id="dlt_product">
<h1 class="hadd">ENTER ID</h1>
<input id="delete_id" placeholder="Enter Product id" type="number">
<input id="delete" value="Delete Product" type="submit">
</form>
</div>
</div>-->
<h1 id="mh">Manage All Product</h1>
<div class="main">
</div>
</body>
</html>
<script src="JS/admin._panel.js"></script>