-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookTickets.html
More file actions
53 lines (52 loc) · 2.34 KB
/
BookTickets.html
File metadata and controls
53 lines (52 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="images/subway.png">
<title>Book Tickets</title>
<link rel="stylesheet" href="css/booking.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<script src="javascript/bookTrainSearch.js" defer></script>
<script src="javascript/sampleData.js" defer></script>
<script src="javascript/bookNowButton.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><a href="index.html#contact">Contact 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>
<main>
<section class="search-section">
<h1>Book Your Train Tickets</h1>
<form id="search-form">
<input type="text" name="from" id="from-city" placeholder="From">
<input type="text" name="to" id="to-city" placeholder="To">
<label for="date"></label>
<input type="date" name="date" placeholder="Date" required>
<button type="submit" >SEARCH</button>
</form>
</section>
<section class="results-section" id="results-section">
<!--Sample data displayed-->
</section>
</main>