-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
437 lines (424 loc) · 21 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bangladesh Railway E-Ticketing Service</title>
<!-- links -->
<link rel="stylesheet" href="./output/tailwind.css" />
<link
rel="shortcut icon"
href="https://eticket.railway.gov.bd/img/favicon.ico"
type="image/x-icon" />
<script
src="https://kit.fontawesome.com/697c0af9d0.js"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- navigation section area -->
<section class="navigation__bar">
<nav
class="bg-white border-gray-200 px-2 sm:px-4 py-2.5 dark:bg-gray-900 sticky">
<div
class="container w-2/3 flex flex-wrap justify-between items-center mx-auto">
<!-- logo area -->
<a href="index.html" class="flex items-center">
<img
src="images/br-logo.png"
class="mr-3 sm:h-9"
alt="Bangladesh Railway Logo" />
<span
class="self-center text-xl font-semibold text-orange-400 w-24"
>Bangladesh Railway</span
>
</a>
<!-- logo area end -->
<!-- toggle -->
<button
data-collapse-toggle="navbar-default"
type="button"
class="inline-flex items-center p-2 ml-3 text-sm text-gray-500 md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="navbar-default"
aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg
class="w-10 h-6"
aria-hidden="true"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
</svg>
</button>
<!-- toggle end -->
<!-- nav items -->
<div
class="nav__items hidden md:block md:w-auto"
id="navbar-default">
<ul
class="flex flex-col p-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium md:border-0">
<li>
<a
href="#"
class="active block py-2 pr-4 pl-3 md:border-0 md:p-0"
aria-current="page"
>Home</a
>
</li>
<li>
<a
href="login.html"
class="block py-2 pr-4 pl-3 md:border-0 md:p-0"
>Login</a
>
</li>
<li>
<a
href="register.html"
class="block py-2 pr-4 pl-3 md:border-0 md:p-0"
>Resgister</a
>
</li>
<li>
<a
href="contact.html"
class="block py-2 pr-4 pl-3 md:border-0 md:p-0"
>Contact Us</a
>
</li>
</ul>
</div>
<!-- nav items end -->
</div>
</nav>
</section>
<!-- navigation section area ended-->
<!-- search train area -->
<section class="search__train pt-16">
<div
class="container w-2/3 mx-auto grid lg:grid-cols-2 md:grid-cols-1 gap-x-12 items-center">
<div class="search__input">
<!-- input field -->
<div
class="input__field w-full grid lg:grid-cols-2 md:grid-cols gap-x-8 md:p-4">
<!-- input field from area -->
<div class="field__from space-y-4">
<div class="from__up">
<label
class="flex items-center mb-2 text-sm font-bold text-gray-700"
for=""
>From</label
>
<input
type="text"
class="outline-0 border border-gray-300 w-full rounded-md focus:border-blue-500 focus:drop-shadow-xl text-sm"
placeholder="From Station" />
</div>
<div class="from__down">
<label
class="flex items-center mb-2 text-sm font-bold text-gray-700"
>Date of journey</label
>
<input
placeholder="Pick a date"
class="textbox-n outline-0 border border-gray-300 w-full focus:border-blue-500 focus:drop-shadow-xl text-sm rounded-md"
type="text"
onfocus="(this.type='date')"
id="date" />
<!-- <input
type="date"
class="outline-0 border border-gray-300 w-full focus:border-blue-500 focus:drop-shadow-xl text-sm rounded-md" /> -->
</div>
</div>
<!-- input field from area ended -->
<!-- input field to area -->
<div class="field__to space-y-4">
<div class="from__up">
<label
class="flex items-center mb-2 text-sm font-bold text-gray-700"
for=""
>To</label
>
<input
type="text"
class="outline-0 border border-gray-300 w-full rounded-md focus:border-blue-500 focus:drop-shadow-xl text-sm"
placeholder="To Station" />
</div>
<div class="from__down">
<label
class="flex items-center mb-2 text-sm font-bold text-gray-700"
for="seats"
>Choose a class</label
>
<select
id="seats"
class="outline-0 border w-full rounded-md pr-2 text-sm text-gray-700 focus:border-blue-500 focus:drop-shadow-xl">
<option value="" selected>
Choose a class
</option>
<option value="AC_B">AC_B</option>
<option value="AC_S">AC_S</option>
<option value="Snighdha">SNIGHDHA</option>
<option value="F_birth">F_BIRTH</option>
<option value="F_seat">F_SEAT</option>
<option value="F_chair">F_CHAIR</option>
<option value="Shovon">SHOVON</option>
<option value="Shulov">SHULOV</option>
</select>
</div>
</div>
<!-- input field to area ended -->
</div>
<!-- input field ended -->
<!-- button -->
<div class="input__button">
<button
class="w-full px-32 py-3 mt-8 rounded-md uppercase text-white text-xs font-bold tracking-widest">
Search Trains
</button>
</div>
<!-- button ended -->
</div>
<div class="search__image relative">
<img
class="w-full rounded-xl"
src="images/train-illustration-for-train-1.jpg"
alt="" />
<div
class="img__purchase absolute top-8 right-4 w-2/5 text-right">
<p class="">
Easy
<span class="font-bold"> purchase </span>of<span
class="font-bold">
tickets </span
>using online payment method
</p>
<ul class="flex items-center gap-x-4">
<li class="w-10">
<img src="images/bkash.png" alt="" />
</li>
<li class="w-10">
<img src="images/nagad-32.png" alt="" />
</li>
<li class="w-10">
<img src="images/rocket.svg" alt="" />
</li>
<li class="w-10">
<img src="images/master-card.png" alt="" />
</li>
<li class="w-10">
<img src="images/visa.png" alt="" />
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- search train area ended -->
<!-- search select pay -->
<section class="select__pay py-16">
<div class="container w-2/3 mx-auto">
<div
class="main__part flex flex-col md:flex-row h-screen w-screen m-8 md:m-auto items-center justify-between gap-x-32">
<div class="search px-20">
<div class="img">
<img src="images/search.svg" alt="" width="65%" />
</div>
<div class="text space-y-2">
<h2
class="text-3xl font-bold text-gray-800 tracking-wide">
Search
</h2>
<p class="text-sm text-gray-700 tracking-wide">
Choose your origin, destination, <br />
journey dates and search for trains
</p>
</div>
</div>
<div class="select px-20">
<div class="img">
<img src="images/select.svg" alt="" width="80%" />
</div>
<div class="text space-y-2">
<h2
class="text-3xl font-bold text-gray-800 tracking-wide">
Select
</h2>
<p class="text-sm text-gray-700 tracking-wide">
Select your desired trip and choose <br />
your seats
</p>
</div>
</div>
<div class="pay px-20">
<div class="img">
<img src="images/pay.svg" alt="" width="80%" />
</div>
<div class="text space-y-2">
<h2
class="text-3xl font-bold text-gray-800 tracking-wide">
Pay
</h2>
<p class="text-sm text-gray-700 tracking-wide">
Pay for the tickets via Debit / Credit <br />
Cards or MFS
</p>
</div>
</div>
</div>
</div>
</section>
<!-- search select pay ended -->
<!-- purchase instructions area -->
<section class="purchase__area py-16">
<div class="container w-2/3 mx-auto px-16">
<div
class="purchase__main grid lg:grid-cols-2 md:grid-cols items-center justify-around">
<div class="img__side">
<img src="images/instruction-secion-image.png" alt="" />
</div>
<div class="text__side">
<h2 class="text-3xl font-bold tracking-wide py-8">
Instructions to Purchase Tickets
</h2>
<ul>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
Tickets can be bought online five days in
advance.
</p>
</li>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
You can pay for the tickets using mobile
financial services: bKash, Nagad, Rocket or
debit/credit cards: Mastercard, Visa. Other
payment options will be available soon.
</p>
</li>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
In case of payment or transaction failure,
the deducted amount would be refunded by
your bank or MFS provider within 8 business
days.
</p>
</li>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
In case money has been deducted from your
card / mobile wallet but you have not
received a ticket confirmation, the deducted
amount would be refunded by your bank or MFS
provider within 8 business days.
</p>
</li>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
If you have not received your ticket copy in
email, kindly check your Spam / Junk folder.
You can also download your ticket copy from
the purchase history of your account after
you login.
</p>
</li>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
Download the official
<a href="#">Rail Sheba</a>
app published by Bangladesh Railway from
<a href="#" class="gp">Google Play</a>
.
</p>
</li>
<li class="flex items-center">
<i class="fa fa-arrow-right"></i>
<p class="text">
In case of passengers downloading fake apps
or any other app from Google Play which
claim to sell train tickets of Bangladesh
Railway, the authorities will not take any
liability.
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- purchase instructions area ended -->
<!-- payment methods -->
<section class="payment">
<div class="payment__methods py-8">
<div class="methods flex items-center justify-center">
<div class="bkash w-full">
<img src="images/bkash.png" alt="" />
</div>
<div class="nagad w-full">
<img src="images/nagad-32.png" alt="" />
</div>
<div class="rocket w-full">
<img src="images/rocket.svg" alt="" />
</div>
<div class="mc w-full">
<img src="images/master-card.png" alt="" />
</div>
<div class="visa w-full">
<img src="images/visa.png" alt="" />
</div>
</div>
</div>
</section>
<!-- payment methods ended -->
<!-- rules -->
<section class="rules py-16">
<div class="container">
<p>
* The Tickets are issued by Bangladesh Railway’s Centrally
Computerized Seat Reservation & Ticketing System (CCSRTS)
and Shohoz-Synesis-Vincen JV is responsible for designing,
development, implementation, technical operation &
maintenance of the system.
</p>
</div>
</section>
<!-- rules ended -->
<!-- footer section -->
<section class="footer__area">
<div
class="container w-2/3 mx-auto flex items-center justify-items-center">
<div class="left w-full flex items-center">
<img class="" src="images/br-logo.png" alt="" width="20%" />
<div class="left__text">
<p class="text__english">Bangladesh Railway</p>
<p class="text__bangla">নিরাপদ . আরামদায়ক . সাশ্রয়ী</p>
</div>
</div>
<div class="middle w-full px-32 font-bold text-sm">
<p>
<a href="#">Terms and Conditions</a>
|
<a href="#">Privacy Policy</a>
</p>
</div>
<div class="right w-full px-16">
<h4 class="font-bold text-xs">Powered By</h4>
<p class="text-2xl font-bold">Shohoz-Synesis-Vincen JV</p>
</div>
</div>
</section>
<!-- footer section ended -->
<!-- script -->
</body>
</html>