-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrder-HTML.html
More file actions
58 lines (50 loc) · 1.78 KB
/
Order-HTML.html
File metadata and controls
58 lines (50 loc) · 1.78 KB
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
<!-- ORDER SECTION HTML CODE -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Section</title>
</head>
<body>
<div id="Order">
<form class="order-form" action="connect.php" method="POST">
<h2>Place Your Order</h2>
<div class="form-group">
<label>Customer Name</label>
<input type="text" name="customer_name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label>Mobile Number</label>
<input type="tel" name="mobile" placeholder="Enter your mobile no." required>
</div>
<div class="form-group">
<label>Email</label>
<input type="email" name="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label>Select Dish</label>
<select name="dish" required>
<option value="">-- Select Dish --</option>
<option>Paneer Butter Masala</option>
<option>Chicken Biryani</option>
<option>Mutton Rogan Josh</option>
<option>Dal Makhani</option>
<option>Garlic Naan</option>
<option>Veg Pulao</option>
<option>Tandoori Chicken</option>
</select>
</div>
<div class="form-group">
<label>Quantity</label>
<input type="number" name="quantity" min="1" placeholder="Enter quantity" required>
</div>
<div class="form-group">
<label>Special Request</label>
<textarea name="special_request" placeholder="Any special instructions..."></textarea>
</div>
<button type="submit" class="submit-btn">Submit Order</button>
</form>
</div>
</body>
</html>