-
Notifications
You must be signed in to change notification settings - Fork 3
/
dashboard.html
110 lines (93 loc) · 4.07 KB
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dashboard</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="dashboard.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="dashboard">
<div class="container">
<div class="header">
<h1 class="font-xxl">Welcome!</h1>
</div>
<!-- Card -->
<div class="flex-column" id="record">
<a href="index.html" targe="_blank">
<div class="card">
<p class="name xxl">Book a ticket</p>
</div>
</a>
</div>
<!-- Card -->
<div class="flex-column" id="record">
<a href="pnr.html" targe="_blank">
<div class="card">
<p class="name xxl">Check PNR status</p>
</div>
</a>
</div>
<!-- Card -->
<div class="flex-column" id="record">
<a href="cancel.html" targe="_blank">
<div class="card">
<p class="name xxl">Cancel Ticket</p>
</div>
</a>
</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="dashboard.js" type="module"></script> -->
</body>
</html>