-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathairportchecks.html
More file actions
69 lines (63 loc) · 2.44 KB
/
airportchecks.html
File metadata and controls
69 lines (63 loc) · 2.44 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
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Parking Reservation System</title>
<link rel="stylesheet" type="text/css" href="homepagecss.css">
</head>
<body>
<header>
<h1>Welcome to Parking Reservation</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
</ul>
</nav>
<main>
<section id="reservation-form">
<h2>Check Available Parking Slots</h2>
<form id="reservationForm" action="park buttons.html">
<fieldset class="wrapper">
<label for="city">Select Airport:
<select name="city" id="city" required>
<option value="Jalandhar">Indira Gandhi Airport</option>
<option value="Ludhiana">Amritsar airport</option>
<option value="phagwara">Channdigarh Airport/option>
</select></label>
</fieldset>
<fieldset class="wrapper">
<label for="vehicle">Select Vehicle:
<select name="city" id="city" required>
<option value="Car">Car</option>
<option value="Bike">Bike</option>
<option value="Scooter">Scooter</option>
</select>
</label>
</fieldset>
<fieldset class="wrapper">
<label for="date">Select Date:
<input type="date" name="date" id="date" required>
</label>
</fieldset>
<fieldset class="wrapper">
<label for="time">Select Time:
<input type="time" name="time" id="time" required>
</label>
</fieldset>
<fieldset class="wrapper" id="dur">
<label for="duration">Select Duration(hr):
<input type="number" name="duration" id="duration" min="1" required>
</label>
</fieldset>
<!-- Rest of the form elements (date, time, duration) -->
<button type="submit" class="btn">Check Slots</button>
</fieldset>
</form>
</section>
</main>
<footer>
<p>© 2023 Parking Reservation System</p>
</footer>
</body>
</html>