-
Notifications
You must be signed in to change notification settings - Fork 408
/
Copy pathindex.html
73 lines (72 loc) · 1.69 KB
/
index.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
73
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>E-Trains</title>
<link rel="stylesheet" href="UserHome_Css.css">
</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 green">User Login</div>
<form action="userlogin" class="tab brown" method="post">
<br /> UserName: <input type="text" name="uname"
placeholder="Enter Your EmailId"> <br /> <br /> Password: <input
type="password" name="pword"> <br /> <br /> <input
type="submit" value=" LOGIN "><br />
</form>
<br />
<footer>
<address id="cent">
Contact: Mr. Shashi Raj<br />Email:<a href="mailto">[email protected]</a><br />PhoneNo:
9876543210
</address>
</footer>
</body>
</html>