-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin.html
54 lines (53 loc) · 1.96 KB
/
admin.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
<!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 Page of PC'S Technologies</title>
<link rel = "icon" href =
"WhatsApp Image 2023-01-17 at 4.00.27 PM (1).jpeg"
type = "image/x-icon">
</head>
<link rel="stylesheet" href="css\admin.css">
<body>
<button class="update-product">Update Product in DataBase</button><span></span><button class="show">Show Data</button>
<div class="update-data show-data">
<form action="">
<span>×</span>
<label for="">Product Name </label>
<input type="text" id="p-name">
<label for="">Product Image-1</label>
<input type="text" id="image-1">
<label for="">Product Image-2</label>
<input type="text" id="image-2">
<label for="">Product Image-3</label>
<input type="text" id="image-3">
<label for="">Product Ram</label>
<input type="text" id="ram">
<label for="">Product Rom</label>
<input type="text" id="rom">
<label for="">Product Line</label>
<input type="text" id="line">
<label for="">Product screen size</label>
<input type="text" id="size">
<label for="">Product price </label>
<input type="text" id="price">
<label for="">Product Color</label>
<input type="text" id="color">
<label for="">Product Description</label>
<input type="text" id="Description">
<label for="">Product strikeoffprize</label>
<input type="text" id="strikeoffprize">
<label for="">Product Category</label>
<input type="text" id="Category">
</form>
<button id="data-updata-in-server">Submit</button>
</div>
<div class="show-database">
<span>×</span>
<div></div>
</div>
</body>
</html>
<script src="scripts\admin.js"></script>