-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeleteItem.html
62 lines (58 loc) · 2.25 KB
/
DeleteItem.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Delete Item</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="header">
<div id="page-title">
<button type="button" name="home-button" id="home-button" onclick="window.location.href='index.php'"></button>
<h1>BeSanta : Donation System</h1>
<p class="slogan">Let's be someone's Santa!</p>
</div>
</div>
<div class="main-container">
<br>
<div class="Forms">
<h2> Enter the item details to be deleted</h2>
<form class="Delete-item" action="delete.php" method="POST">
<label>Enter the item name : </label>
<input type="text" name="item_name" value="" required><br><br>
<label>Select category : </label>
<select class="category" name="category" required>
<option value="Clothes" selected>Clothes</option>
<option value="Shoes">Shoes</option>
<option value="Toys">Toys</option>
<option value="Kitchenware">Kitchenware</option>
<option value="Appliances">Appliances</option>
<option value="Electronics">Electronics</option>
<option value="Books">Books</option>
<option value="Furniture">Furniture</option>
<option value="Groceries">Groceries</option>
</select><br><br>
<input type="submit" name="deleteitem" value="Delete"><br>
</form>
</div><br>
</div>
<div class="footer" id="page-footer">
<div class="" id="aboutus">
<h3>About Us</h3>
<p style="position:relative;">
We, the team of BeSanta are from Goa, India who help you find the right people for you to donate through this Website
</p><br>
</div>
<div class="" id="Quicklinks">
<h3>Quick Links</h3>
<p>
<a class="links" href="contact.html">Contact Us</a>
<a class="links" href="Search-Display.html">Search Items</a>
<a class="links" href="AddItem.html">Add Item</a>
<a class="links" href="DeleteItem.html">Delete Items</a>
<a class="links" href="UpdateItem.html">Update Items</a>
</p>
</div><br>
</div>
</body>
</html>