forked from gvsankirtana/Airline-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.php
More file actions
242 lines (223 loc) · 10.4 KB
/
homepage.php
File metadata and controls
242 lines (223 loc) · 10.4 KB
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
<?php
session_start();
?>
<!doctype html>
<html lang="en">
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="homepage.css">
<title>Airplane Management!</title>
</head>
<body>
<h1>Airplane Management!</h1>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive" style="font-size:30px;">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home
<span class="sr-only">(current)</span>
</a>
</li>
<?php
if(($_SESSION["user"])==null)
{ ?>
<li class="nav-item">
<a class="nav-link" href="login.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="signup.php">Signup</a>
</li>
<?php } ?>
<?php
if(($_SESSION["user"])!=null)
{ ?>
<li class="nav-item">
<a class="nav-link" href="logout.php">Logout</a>
</li>
<?php } ?>
</ul>
<br>
<br>
</div>
</div>
</nav>
<header>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<!-- Slide One - Set the background image for this slide in the line below -->
<div class="carousel-item active" style="background-image: url('https://monroeaerospace.com/blog/wp-content/uploads/2019/08/airplane-landing-lights-874x452.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4" style="font-weight:bold;color:yellow;background-color:black;">WELCOME TO ONLINE AIRPLANE BOOKING</h2>
<p class="lead">You need to have an account to enjoy our services!</p>
</div>
</div>
<!-- Slide Two - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('https://4.bp.blogspot.com/-InDD3Hm_bhU/XB4_TK3TT7I/AAAAAAAAAJ4/r5tUeCOqq1MTchFh7D7pWdf582A4qYIIwCEwYBhgL/s1600/Businesswoman-working-at-a-computer-1280x720.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4" style="font-weight:bold;color:yellow;background-color:black;">CUSTOMER SERVICE IS OUR FIRST AND ATMOST PRIORITY</h2>
</div>
</div>
<!-- Slide Three - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('https://1.bp.blogspot.com/-GWl5F8P4t-8/XB4_VV4VE5I/AAAAAAAAAKE/SmHRzas-LpMpDBoLn6otR9AznVsr6L7OgCEwYBhgL/s1600/t1larg.africa.cnn.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4" style="font-weight:bold;color:yellow;background-color:black;">21 YEARS OF EXPERTISE IN RUNNING FLIGHTS</h2>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
<!-- Page Content -->
<section class="py-5 text-center">
<div class="container">
<h2 class="text-center">Our Services</h2>
<p class="text-muted mb-5 text-center">There are many variations of passengers leading to various needs. We promise to fulfill them all.</p>
<div class="row">
<div class="col-sm-6 col-lg-4 mb-3">
<svg class="lnr text-primary services-icon">
<use xlink:href="#lnr-magic-wand"></use>
</svg>
<h6>Be a registered user to enjoy our unlimited services</h6>
<p class="text-muted">Sign up as a customer.Its absolutely free so why not?</p>
</div>
<div class="col-sm-6 col-lg-4 mb-3">
<svg class="lnr text-primary services-icon">
<use xlink:href="#lnr-heart"></use>
</svg>
<h6>You can book flights now its all a button away.</h6>
<p class="text-muted">No more standing in long queues to book flight tickets with confusion.</p>
</div>
<div class="col-sm-6 col-lg-4 mb-3">
<svg class="lnr text-primary services-icon">
<use xlink:href="#lnr-rocket"></use>
</svg>
<h6>We have 24/7 customer service all for you</h6>
<p class="text-muted">Our customer service employess are always eager to connect with you for feedback ,queries and complaints.</p>
</div>
</div>
</div>
</section>
<section class="main">
<div class="container mt-4">
<h1 class="text-center mb-4 p-4 text-secondary">From The Blog</h1>
<div class="row">
<div class="card-columns">
<div class="card shadow border-0">
<img class="card-img-top" src="https://4.bp.blogspot.com/-InDD3Hm_bhU/XB4_TK3TT7I/AAAAAAAAAJ4/r5tUeCOqq1MTchFh7D7pWdf582A4qYIIwCEwYBhgL/s1600/Businesswoman-working-at-a-computer-1280x720.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">I have used this site to book tickets in India and its amazing.</h5>
<p class="card-text">The advantages are numerous.</p>
</div>
</div>
<div class="card shadow border-0 p-3">
<blockquote class="blockquote mb-0 card-body">
<p>This is the fastest site i have seen in my life</p>
<footer class="blockquote-footer">
<small class="text-muted">
Ram Kumar<cite title="Source Title">Forge</cite>
</small>
</footer>
</blockquote>
</div>
<div class="card shadow border-0">
<img class="card-img-top" src="https://4.bp.blogspot.com/-InDD3Hm_bhU/XB4_TK3TT7I/AAAAAAAAAJ4/r5tUeCOqq1MTchFh7D7pWdf582A4qYIIwCEwYBhgL/s1600/Businesswoman-working-at-a-computer-1280x720.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Such a user friendly site</h5>
<p class="card-text">This is such a user friendly site</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Header -->
<header class="bg-primary text-center py-5 mb-4">
<div class="container">
<h1 class="font-weight-light text-white">Meet the Team</h1>
</div>
</header>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Team Member 1 -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-0 shadow">
<img src="https://source.unsplash.com/9UVmlIb0wJU/500x350" class="card-img-top" alt="...">
<div class="card-body text-center">
<h5 class="card-title mb-0">Krithikha Balamurugan</h5>
<div class="card-text text-black-50">U19CS076</div>
</div>
</div>
</div>
<!-- Team Member 2 -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-0 shadow">
<img src="https://source.unsplash.com/9UVmlIb0wJU/500x350" class="card-img-top" alt="...">
<div class="card-body text-center">
<h5 class="card-title mb-0">Sankirtana GV</h5>
<div class="card-text text-black-50">U19CS068</div>
</div>
</div>
</div>
<!-- Team Member 3 -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-0 shadow">
<img src="https://source.unsplash.com/sNut2MqSmds/500x350" class="card-img-top" alt="...">
<div class="card-body text-center">
<h5 class="card-title mb-0">Mahitha Gurrala</h5>
<div class="card-text text-black-50">U19CS066</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<div class="container">
<div class="row">
<div class="col-md-8">
<blockquote class="blockquote text-center mb-0">
<svg class="lnr text-muted quote-icon pull-left">
<use xlink:href="#lnr-heart">
</use></svg>
<p class="mb-0">Keep in touch with us!</p>
<footer class="blockquote-footer">Airport Management<br>
<cite title="Source Title">airportmanagement@gmail.com</cite>
</footer>
</blockquote>
</div>
</a></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://cdn.linearicons.com/free/1.0.0/svgembedder.min.js"></script>
</body>
</html>