-
Notifications
You must be signed in to change notification settings - Fork 0
/
booking.html
53 lines (52 loc) · 1.8 KB
/
booking.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booking</title>
<link rel="stylesheet" href="AHMED.css">
</head>
<body>
<header>
<h1>Booking</h1>
</header>
<div class="container">
<form action="submit_booking.php" method="POST">
<div class="ABN">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="ABN">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="ABN">
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="ABN">
<label for="date">Date:</label>
<input type="date" id="date" name="date" required>
</div>
<div class="ABN">
<label for="time">Time:</label>
<input type="time" id="time" name="time" required>
</div>
<div class="ABN">
<label for="guests">Number of Guests:</label>
<input type="number" id="guests" name="guests" min="1" required>
</div>
<div class="ABN">
<label for="message">Additional Message:</label>
<textarea id="message" name="message" rows="4"></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
</body>
<footer>
<div class="container">
<p>© 2024 Welcome Restaurant. All rights reserved.</p>
</div>
</footer>
</html>