-
Notifications
You must be signed in to change notification settings - Fork 408
/
Copy pathFare.html
72 lines (69 loc) · 1.56 KB
/
Fare.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>E-Trains</title>
<link rel="stylesheet" href="UserHome_Css.css">
<style>
</style>
</head>
<body>
<header>
<h1 class="hd">National Ticket Booking Spot</h1>
<div class="home">
<p class="menu">
<a href="userhome">Home</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="userviewtrainfwd">View Trains</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="trainbwstnfwd">Trains Between Stations</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="bookingdetails">Ticket Booking History</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="fareenqfwd">Fare Enquiry</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="useravailfwd">Seat Availability</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="usersearchtrain">Search By TrainNo</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="userprofile">Profile</a>
</p>
</div>
<div class="home">
<p class="menu">
<a href="userlogout">Logout</a>
</p>
</div>
</header>
<div class="tab">
<p class="menu">Fare Enquiry for Trains Between Stations</p>
</div>
<form action="fareenq" class="tab red" method="post">
From Station: <input type="text" name="fromstation"><br />
<br /> To Station: <input type="text" name="tostation"><br />
<br /> <input type="submit" value=" Get Fare "><br />
</form>
<br />
</body>
</html>