forked from Aniket-Pilankar/Gymshark_FRONTEND_Unit4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
75 lines (68 loc) · 3.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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>
<style>
#main {
display: flex;
}
#put {
border: 1px solid red;
width: 50%;
}
#delete {
border: 1px solid blue;
width: 50%;
}
input {
margin-top: 20px;
width: 97%;
}
#addProductSubmit,#DeleteProductSubmit {
margin-top: 10px;
width: 500px;
margin-bottom: 40px;
}
</style>
</head>
<body>
<div id="main">
<div id="put">
<h2>Add products to Mens Database</h2>
<input type="number" id="id" placeholder="Enter ID"><br>
<input type="text" name="" id="title" placeholder="Enter Title"><br>
<input type="text" name="" id="subtitle" placeholder="Enter Subtitle"><br>
<input type="url" name="" id="image1" placeholder="Image url_1"><br>
<input type="url" name="" id="image2" placeholder="Image url_2"><br>
<input type="url" name="" id="image3" placeholder="Image url_3"><br>
<input type="url" name="" id="image4" placeholder="Image url_4"><br>
<input type="url" name="" id="image5" placeholder="Image url_5"><br>
<input type="url" name="" id="image6" placeholder="Image url_6"><br>
<input type="text" name="" id="color" placeholder="color"><br>
<input type="number" name="" id="price" placeholder="price"><br>
<input type="text" name="" id="description_title" placeholder="description_title"><br>
<input type="text" name="" id="description_para" placeholder="description_para"><br>
<input type="text" name="" id="description_points1" placeholder="description_points1"><br>
<input type="text" name="" id="description_points2" placeholder="description_points2"><br>
<input type="text" name="" id="description_points3" placeholder="description_points3"><br>
<input type="text" name="" id="description_points4" placeholder="description_points4"><br>
<input type="text" name="" id="description_points5" placeholder="description_points5"><br>
<input type="text" name="" id="description_points6" placeholder="description_points6"><br>
<input type="text" name="" id="description_points7" placeholder="description_points7"><br>
<input type="text" name="" id="description_points8" placeholder="description_points8"><br>
<input type="text" name="" id="description_points9" placeholder="description_points9"><br>
<input type="text" name="" id="description_points10" placeholder="description_points10"><br>
<button id="addProductSubmit">Add products</button>
</div>
<div id="delete">
<h2>Delete products</h2>
<input type="text" id="Delete_id" placeholder="Enter Mongo Id of the product that need to be deleted">
<button id="DeleteProductSubmit">Delete Product</button>
</div>
</div>
</body>
</html>
<script src="./scripts/admin.js"></script>