-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
138 lines (115 loc) · 4.37 KB
/
about.php
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
<?php include('db_connect.php');
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>KB Tickets</title>
<meta charset="UTF-8">
<meta name="description" content="HALO photography portfolio template">
<meta name="keywords" content="photography, portfolio, onepage, creative, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link href="img/favicon.jpg" rel="shortcut icon"/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/flaticon.css"/>
<link rel="stylesheet" href="css/animate.css"/>
<link rel="stylesheet" href="css/owl.carousel.css"/>
<link rel="stylesheet" href="css/style.css"/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header section start -->
<header class="header-section sp-pad">
<h3 class="site-logo">KB Tickets</h3>
<!-- <form class="search-top">
<button class="se-btn"><i class="fa fa-search"></i></button>
<input type="text" placeholder="Search.....">
</form> -->
<div class="nav-switch">
<i class="fa fa-bars"></i>
</div>
<nav class="main-menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="about.php">about us</a></li>
<!-- <li><a href="#">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li> -->
<?php
if (!isset($_SESSION["email"])) {?><li><a href="cust_sign.php">Sign Up</a></li><?php }
else{
$email= $_SESSION["email"]; $results = mysqli_query($conn, "SELECT * FROM customer where email='$email'");
$rowf = mysqli_fetch_array($results);?><li><a href="cust_dash.php"><b>hi, <?php echo $rowf['name'];?></b></a></li><?php } ?>
<!-- <li><a href="cust_login.php">Sign In</a></li> -->
<?php
if (!isset($_SESSION["email"])) {?><li><a href="cust_login.php">Sign In</a></li><?php }
else{ ?><li><a href="logout_cust.php"><b>logout</b></a></li><?php } ?>
<?php
if (isset($_SESSION["email"])) {?><li><a href="cust_dash.php"><b>MY dashboard</b></a></li><?php }?>
<li><a href="contact.php">Contact</a></li>
</ul>
</nav>
</header>
<!-- Header section end -->
<!-- Page top section start -->
<div class="page-top-area set-bg" data-setbg="img/headers-bg/1.jpg">
<div class="breadcrumb-area">
<a href="index.php">Home</a> / <span>About us</span>
</div>
</div>
<!-- Page top section end -->
<!-- Intro section start -->
<section class="intro-section sp-pad spad">
<div class="container-fluid p-0">
<div class="row">
<div class="col-xl-4 intro-text">
<span class="sp-sub-title">KB TICKETS</span>
<h3 class="sp-title">What do we do?</h3>
<p>Our previous work helped people by providing travel solutions. Our aim is to make travel for commuters as simplified as possible.</p>
</div>
<div class="col-xl-7 offset-xl-1">
<figure class="intro-img mt-5 mt-xl-0">
<img src="img/intro.jpg" alt="">
</figure>
</div>
</div>
</div>
</section>
<!-- Intro section end -->
<!-- Footer section start -->
<footer class="footer-section spad">
<div class="container text-center">
<h2>Feel Free To Reach Us!</h2>
<p>[email protected]</p>
<div class="social">
<a ><i class="fa fa-pinterest"></i></a>
<a ><i class="fa fa-facebook"></i></a>
<a ><i class="fa fa-twitter"></i></a>
<a ><i class="fa fa-dribbble"></i></a></br>
</br>
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | <a>KB Tickets</a>
</div>
</div>
</footer>
<!-- Footer section end -->
<!--====== Javascripts & Jquery ======-->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/mixitup.min.js"></script>
<script src="js/circle-progress.min.js"></script>
<script src="js/main1.js"></script>
</body>
</html>