forked from pandevim/RRS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (137 loc) · 4.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>RRS</title>
<meta charset="utf-8">
<meta name="copyright" content="Pandey&Sons Pvt. Ltd.">
<meta name="version" content="1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="shortcut icon" type="image/ico" href="img/favicon.ico" />
<script type="text/javascript" src="sign-in.js"></script>
</head>
<body>
<header>
<img id="logo" src="img/logo.PNG">
<div id="main-text">
    R A I L W A Y<br>
    R E S E R V A T I O N<br>
    S Y S T E M
</div>
</header>
<div class="search-query">
<form action="/default.php">
<input type="image" src="img/search-icon.png" alt="Submit" style="position: absolute;padding-top: 10px;padding-left: 15px" />
<input id="search-icon" type="text" name="search" placeholder="Search Train.." />
</form>
</div>
<nav>
<ul>
<li>
<a href="#">HOME</a>
</li>
<li class="dropdown">
<a href="#" class="dropbtn">Book Ticket</a>
<div class="dropdown-content">
<a href="registration.html">Reservation</a>
<a href="#">Fares</a>
<a href="#">Cancellation & Refund</a>
</div>
</li>
<li class="dropdown">
<a href="#" class="dropbtn">Schedules</a>
<div class="dropdown-content">
<a href="#">Train Schedules</a>
<a href="#">Delays</a>
</div>
</li>
<li class="dropdown">
<a href="#" class="dropbtn">Tours</a>
<div class="dropdown-content">
<a href="#">My Trip</a>
<a href="#">User Guide</a>
</div>
</li>
<li id="nav-sign">
<a href="#" onclick="on()">Sign In</a>
</li>
</ul>
</nav>
<div class="main-overlay">
<div id="overlay"><img id="overlay-off" onclick="off()" src="img/fileclose.png" />
<div class="cotn_principal">
<div class="cont_centrar">
<div class="cont_login">
<div class="cont_info_log_sign_up">
<div class="col_md_login">
<div class="cont_ba_opcitiy">
<h2>LOGIN</h2>
<p>Sign In to make Reservation.</p>
<button class="btn_login" onclick="cambiar_login()">LOGIN</button>
</div>
</div>
<div class="col_md_sign_up">
<div class="cont_ba_opcitiy">
<h2>SIGN UP</h2>
<p>Sign Up to Sign In.</p>
<button class="btn_sign_up" onclick="cambiar_sign_up()">SIGN UP</button>
</div>
</div>
</div>
<div class="cont_back_info">
<div class="cont_img_back_grey"><img src="img/sign-in-back.jpg" /></div>
</div>
<div class="cont_forms">
<div class="cont_img_back_"><img src="img/sign-in-back.jpg" /></div>
<div class="cont_form_login">
<a href="#" onclick="ocultar_login_sign_up()"><i class="material-icons"><img src="img/back-arrow.png"></i></a>
<h2>LOGIN</h2>
<input type="text" placeholder="Email" />
<input type="password" placeholder="Password" />
<button class="btn_login" onclick="cambiar_login()">LOGIN</button>
</div>
<div class="cont_form_sign_up">
<a href="#" onclick="ocultar_login_sign_up()"><i class="material-icons"><img src="img/back-arrow.png"></i></a>
<h2>SIGN UP</h2>
<input type="text" placeholder="Email" />
<input type="text" placeholder="User" />
<input type="password" placeholder="Password" />
<input type="password" placeholder="Confirm Password" />
<button class="btn_sign_up" onclick="cambiar_sign_up()">SIGN UP</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<main>
<article>
<h2 align="center">What is Railway Registration?</h2><br><br>
<p>
Book your train There are a few ways you can go about making a reservation -- online, or in person at a travel agency or Railways booking counter.First Thing to do is Find your train.
</p><br>
</article>
<div id="buffer">
<p>
In our website introduced reservation
Click on it, on the top left side of the screen after you've logged in.<br>1.Enter the details of the station you want to depart from, the station you want to travel to, and your journey date.<br>2.Select the desired train and class you wish to travel by (and quota if relevant), and check the availability of beds. You can also see the train fare.<br>3.Once you've found a suitable train to travel on, click on the "Book Now" option under "Availability". You will be taken to the ticket reservation page, with the details of the train you selected automatically provided. Fill in the passenger details, and make payment.
</p>
</div>
<aside>
<div class="sign-box">
<!-- Something -->
</div>
</aside>
<div id="additional">
<!-- How to Read a Train Ticket -->
</div>
<div class="top-foot">
<!-- Slide Show -->
</div>
</main>
<footer>
<!-- Social Links -->
</footer>
</body>
</html>