-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin_add_item.html
50 lines (50 loc) · 1.69 KB
/
Admin_add_item.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
<html>
<head><title>Add Item</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="Admin_add_item.css">
</head>
<body>
<header>
<div class="navbar">
<h2 class = 'logo'> <span class = 'first'>Super</span> <span class = 'second'>Shopper</span></h2>
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="About.html">about</a></li>
<li><a href="Contact.html">contact</a></li>
<li><a href="Admin_login.html">log out</a></li>
</ul>
</div>
</header>
<form method="post" action="Admin_add_item" class="add">
<table border ="0" width="50%">
<tr>
<td>Product Id:</td>
<td><input type="text" name="n1"
placeholder="Type product id"></td>
</tr>
<tr>
<td>Product Name:</td>
<td><input type="text" name="n2" placeholder="Type product name"></td>
</tr>
<tr>
<td>Product Price:</td>
<td><input type="text" name="n3" placeholder="Type product price"></td>
</tr>
<tr>
<td>Product Quantity:</td>
<td><input type="text" name="n4" placeholder="Type product quantity"></td>
</tr>
<tr><td><input type="submit" value="add"></td>
</tr>
</table>
</form>
<footer class = "footer">
<div class="social-media-links">
<i class="fa-brands fa-facebook fa-4x"></i>
<i class="fa-brands fa-twitter fa-4x"></i>
<i class="fa-brands fa-instagram fa-4x"></i>
</div>
<p>Super Shopper © 2023, All Rights Reserved</p>
</footer>
</body>
</html>