-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookingPage.html
More file actions
82 lines (79 loc) · 3.54 KB
/
bookingPage.html
File metadata and controls
82 lines (79 loc) · 3.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Train Booking</title>
<link rel="icon" type="image/png" href="images/subway.png">
<link rel="stylesheet" href="css/bookingPage.css">
<link rel="stylesheet" href="css/booking.css">
<script src="javascript/fillBookingForm.js" defer></script>
<script src="javascript/bookingPage.js" defer></script>
<script src="javascript/checkLogin.js" defer></script>
</head>
<body>
<header>
<nav class="navbar">
<h2 class="logo"><a href="index.html">ExpressRail.</a></h2>
<input type="checkbox" id="menu-toggler">
<label for="menu-toggler" id="hamburger-btn">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M3 18h18v-2H3v2zm0-5h18V11H3v2zm0-7v2h18V6H3z"/>
</svg>
</label>
<ul class="all-links">
<li class="logged-in"><a href="useraccount.html">Profile</a></li>
<li><a href="BookTickets.html">Book Tickets</a></li>
<li><a href="trainSchedule.html">Train Timings</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li class="logged-in log-out"><a href="#">Log Out</a></li>
<li class="not-logged-in"><a href="login.html">Sign In</a></li>
<li class="join-btn not-logged-in"><a href="registration.html">Sign Up</a></li>
</ul>
</nav>
</header>
<section class="form-section">
<h1 align="center">Book Tickets</h1>
<form action="#" id="booking-form">
<h2>Booking</h2>
<div class="form-group from">
<label for="from">From</label>
<input type="text" id="from" placeholder="Enter your starting destination">
</div>
<div class="form-group to">
<label for="to">To</label>
<input type="text" id="to" placeholder="Enter your ending destination">
</div>
<div class="form-group email">
<label for="email">Email Address</label>
<input type="text" id="email" placeholder="Enter your email address">
</div>
<!-- <div class="form-group password">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter your password">
<i id="pass-toggle-btn" class="fa-solid fa-eye"></i>
</div> -->
<div class="form-group date">
<label for="date">Date of Journey</label>
<input type="date" id="date" placeholder="Select your date">
</div>
<div class="form-group classType">
<label for="classType">Class</label>
<select id="classType">
<option value="" selected disabled>Select your class</option>
<option value="sl">Sleeper Class</option>
<option value="3e">AC 3 Tier Economy</option>
<option value="3a">AC 3 Tier</option>
<option value="2a">AC 2 Tier</option>
<option value="1a">First Class AC</option>
<option value="2s">Second Sitting</option>
<option value="cc">AC Chair Car</option>
</select>
</div>
<div class="form-group submit-btn">
<input type="submit" value="Submit">
</div>
</form>
</body>
</html>