-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin-page.html
56 lines (56 loc) · 2.12 KB
/
admin-page.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
<!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="icon" type="image/x-icon" href="./imges/logo.png">
<link rel="stylesheet" href="./styles/dashbord.css">
</head>
<body>
<div id="nav">
<div>
<img src="./imges/logo.png" alt="">
</div>
<div>
<a href="index.html">Home</a>
<a href="#" id="dash">Dashbord</a>
<a href="#">Login</a>
</div>
</div>
<div id="middel">
<div id="mid">
<button id="addP">Add Product</button>
<button id="deletButton">Delete Product</button>
<button id="UpdateButton">Update Product</button>
</div>
<div id="bot">
<form action="">
<input id="prId" type="number" placeholder="Product Id">
<input id="prName" type="text" placeholder="Product Name">
<input id="prImg" type="url" placeholder="Product Image URL">
<input id="prTitle" type="text" placeholder="Product Title">
<input id="prPrice" type="number" placeholder="Product Price ₹">
<input id="prDescription" type="text" placeholder="Product Description">
<input id="submitButn" type="button" value="Add Product">
</form>
</div>
<div id="delBot">
<form action="">
<input id="delPrID" type="number" placeholder="Product Id">
<input id="delPrName" type="text" placeholder="Product Name">
<input id="DelButn" type="button" value="Delete Product">
</form>
</div>
<div id="Upbot">
<form action="">
<input type="number" placeholder="Product Id">
<input type="text" placeholder="Product Name">
<input id="UpButn" type="button" value="Get Product">
</form>
</div>
</div>
</body>
</html>
<script src="./src/dashbord.js"></script>