-
Notifications
You must be signed in to change notification settings - Fork 3
/
pnr.html
125 lines (120 loc) · 3.69 KB
/
pnr.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>PNR Status</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="pnr.css" />
</head>
<body class="relative">
<nav class="relative">
<div class="navbar">
<div class="nav-items">
<img class="logo" src="img/logo.png" alt="app-logo" height="75px" />
<a class="item" href="">Check Status</a>
<a class="item" href="">Cancel Train</a>
<a class="item" href="">Contact Us</a>
<a class="login-btn btn" href="login.html">Login</a>
<a class="register-btn btn" href="register.html">Register</a>
</div>
</div>
</nav>
<section class="card">
<div class="pnr-container">
<div class="flex">
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="currentColor"
class="icon"
viewBox="0 0 16 16"
>
<path
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"
/>
</svg>
<h1>Check Status</h1>
</div>
<div class="input-container">
<input
type="text"
placeholder="Enter PNR number"
id="pnr-no"
minlength="10"
/>
<div class="btn-container">
<a class="primary" id="submit" >Submit</a>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-container">
<div class="flex">
<div class="flex">
<a class="footer-item">About Us</a>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4"
height="4"
fill="currentColor"
class="bi bi-circle-fill"
viewBox="0 0 16 16"
>
<circle cx="8" cy="8" r="8" />
</svg>
</div>
<div class="flex">
<a class="footer-item">Policies</a>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4"
height="4"
fill="currentColor"
class="bi bi-circle-fill"
viewBox="0 0 16 16"
>
<circle cx="8" cy="8" r="8" />
</svg>
</div>
<div class="flex">
<a class="footer-item">Customer Care</a>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4"
height="4"
fill="currentColor"
class="bi bi-circle-fill"
viewBox="0 0 16 16"
>
<circle cx="8" cy="8" r="8" />
</svg>
</div>
<div class="flex">
<a class="footer-item">Terms & Conditions</a>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4"
height="4"
fill="currentColor"
class="bi bi-circle-fill"
viewBox="0 0 16 16"
>
<circle cx="8" cy="8" r="8" />
</svg>
</div>
<div class="flex">
<a class="footer-item">Enquiries</a>
</div>
</div>
</div>
<!-- <div class="copyright">
Copyright © github.com/masif2002
</div> -->
</footer>
<script src="pnr.js" type="module" async defer></script>
</body>
</html>