forked from deepmajoka07/-likely-cough-9107
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin_newProd.html
94 lines (88 loc) · 3.45 KB
/
Admin_newProd.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
<!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>Admin Pannel</title>
<link rel="stylesheet" href="./styles/Admin_newProd.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<body>
<div class="mainContainer">
<div class="navigator">
<div class="navbar">
<div class="logo">
<img src="./images/logo.png" alt="">
</div>
<div class="links">
<a href="./Admin_Home.html">Dashboard</a>
<a href="./Admin_Product.html">All Product</a>
<a href="./Admin_newProd.html">New Product</a>
<a href="./User_Admin.html">Users</a>
<a href="./order.html">Order</a>
<a id="logout">Logout</a>
</div>
</div>
</div>
<div class="myform">
<h1 class="admin">New Product</h1>
<form>
<div>
<span>Title :</span>
<input type="text" placeholder="title" id="title">
</div>
<div>
<span>Image_1 :</span>
<input type="text" placeholder="Image_1 Link" id="Image_1">
</div>
<div>
<span>Image_2 :</span>
<input type="text" placeholder="Image_2 Link" id="Image_2">
</div>
<div>
<span>Image_3 :</span>
<input type="text" placeholder="Image_3 Link" id="Image_3">
</div>
<div>
<span>Image_4 :</span>
<input type="text" placeholder="Image_4 Link" id="Image_4">
</div>
<div>
<span>Image_5 :</span>
<input type="text" placeholder="Image_5 Link" id="Image_5">
</div>
<div>
<span>Image_6 :</span>
<input type="text" placeholder="Image_6 Link" id="Image_6">
</div>
<div>
<span>Price :</span>
<input type="text" placeholder="Price" id="Price">
</div>
<div>
<span>Category :</span>
<input type="text" placeholder="Category" id="Category">
</div>
<div>
<span>Gender :</span>
<input type="text" placeholder="Gender" id="Gender">
</div>
<div>
<span>Rating :</span>
<input type="text" placeholder="Rating" id="Rating">
</div>
<div>
<input type="submit" id="submit" value="Submit">
</div>
</form>
</div>
</div>
<span class="notification" id="added"> ✅ Succesfully Added</span>
<span class="notification" id="Errors"> ❌ Failed</span>
<span class="notification" id="out"> ✅ Logout Success</span>
</body>
<script src="./scripts/Admin_newProd.js"></script>
</html>