-
Notifications
You must be signed in to change notification settings - Fork 1
/
addProduct.html
83 lines (72 loc) · 2.86 KB
/
addProduct.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
<!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">
<script src="https://kit.fontawesome.com/02fd71c999.js" crossorigin="anonymous"></script>
<title>Home Page</title>
<link rel="stylesheet" href="css\index.css">
<link rel="stylesheet" href="css\addProduct.css">
</head>
<body>
<nav>
</nav>
<div id="navbar">
<ul>
<li class="nav">
<a href="mainAdmin.html"><img style="border-radius: 10px;" src="WhatsApp Image 2023-01-17 at 4.00.27 PM (1).jpeg" alt=""></a>
</li>
<li class="nav">
<a style="color:white;background-color: rgb(0, 0, 0); font-size: 25px; border-radius: 8px; padding: 5px;" href="mainAdmin.html">Order</a>
</li>
<li class="nav">
<a style="color:white;background-color: rgb(0, 0, 0); font-size: 25px; border-radius: 8px; padding: 5px;" href="admin_product.html">Product</a>
</li>
<li class="nav">
<a style="color:white;background-color: rgb(0, 0, 0); font-size: 25px; border-radius: 8px; padding: 5px;" href="editProduct.html">Edit-Product</a>
</li>
<li class="nav">
<a style="color:white;background-color: rgb(0, 0, 0); font-size: 25px; border-radius: 8px; padding: 5px;"href="addProduct.html">add Product</a>
</li>
</ul>
</div>
<hr>
<div class="edit-product-page">
<div class="edit-section">
<div class="update-data show-data">
<form action="">
<label for=""> <h1>Add Product Product</h1></label>
<label for="">Enter Name </label>
<input type="text" id="p-name">
<label for="">Enter Image-1</label>
<input type="text" id="image-1">
<label for="">Enter Image-2</label>
<input type="text" id="image-2">
<label for="">Enter Image-3</label>
<input type="text" id="image-3">
<label for="">Enter Ram</label>
<input type="text" id="ram">
<label for="">Enter Rom</label>
<input type="text" id="rom">
<label for="">Enter Line</label>
<input type="text" id="line">
<label for="">Enter screen size</label>
<input type="text" id="size">
<label for="">Enter price </label>
<input type="text" id="price">
<label for="">Enter Color</label>
<input type="text" id="color">
<label for="">Enter Description</label>
<input type="text" id="Description">
<label for="">Enter strikeoffprize</label>
<input type="text" id="strikeoffprize">
<label for="">Enter Category</label>
<input type="text" id="Category">
<input type="submit" id="submit">
</form>
</div>
</div>
</body>
</html>
<script src="scripts\addProduct.js"></script>