-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop-about.php
218 lines (186 loc) · 8.29 KB
/
shop-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
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
<?php
session_start();
function __autoload($class){include $class.".php";}
$connect = mysqli_connect("localhost", "root", "", "vegetable");
//details quey call
function details($connect, $query) {
$result = mysqli_query($connect, $query);
$prod = '';
while($row = mysqli_fetch_array($result)) {
$prod = $prod.$row['value'];
}
return $prod;
}
?>
<!DOCTYPE html>
<html>
<!-- Head BEGIN -->
<head>
<meta charset="utf-8">
<title>AboutUs | foodi</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="Big Bucket description" name="description">
<meta content="Big Bucket keywords" name="keywords">
<meta content="Big Bucket" name="author">
<meta property="og:site_name" content="-CUSTOMER VALUE-">
<meta property="og:title" content="-CUSTOMER VALUE-">
<meta property="og:description" content="-CUSTOMER VALUE-">
<meta property="og:type" content="website">
<meta property="og:image" content="-CUSTOMER VALUE-"><!-- link to image for socio -->
<meta property="og:url" content="-CUSTOMER VALUE-">
<link rel="shortcut icon" href="assets/corporate/img/logos/logo-shop-red.png"type="image/x-icon">
<!-- Fonts START -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|PT+Sans+Narrow|Source+Sans+Pro:200,300,400,600,700,900&subset=all" rel="stylesheet" type="text/css">
<!-- Fonts END -->
<!-- Global styles START -->
<link href="assets/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Global styles END -->
<!-- Page level plugin styles START -->
<link href="assets/plugins/fancybox/source/jquery.fancybox.css" rel="stylesheet">
<link href="assets/plugins/owl.carousel/assets/owl.carousel.css" rel="stylesheet">
<link href="assets/plugins/uniform/css/uniform.default.css" rel="stylesheet" type="text/css">
<!-- Page level plugin styles END -->
<!-- Theme styles START -->
<link href="assets/pages/css/components.css" rel="stylesheet">
<link href="assets/corporate/css/style.css" rel="stylesheet">
<link href="assets/pages/css/style-shop.css" rel="stylesheet" type="text/css">
<link href="assets/corporate/css/style-responsive.css" rel="stylesheet">
<link href="assets/corporate/css/themes/red.css" rel="stylesheet" id="style-color">
<link href="assets/corporate/css/custom.css" rel="stylesheet">
<!-- Theme styles END -->
</head>
<!-- Head END -->
<!-- Body BEGIN -->
<body class="ecommerce">
<!-- BEGIN TOP BAR -->
<div class="pre-header">
<div class="container">
<div class="row">
<!-- BEGIN TOP BAR LEFT PART -->
<div class="col-md-6 col-sm-6 additional-shop-info">
<ul class="list-unstyled list-inline">
<li><i class="fa fa-phone"></i><span><?php echo details($connect, "SELECT value FROM `details` where details ='contact'"); ?></span></li>
<li><?php echo details($connect, "SELECT value FROM `details` where details ='email'"); ?></span></li>
</ul>
</div>
<!-- END TOP BAR LEFT PART -->
<!-- END TOP BAR LEFT PART -->
<?php if(isset( $_SESSION['user_id']) && $_SESSION['categary'] == 'USER') { ?>
<!-- BEGIN TOP BAR MENU -->
<div class="col-md-6 col-sm-6 additional-nav">
<ul class="list-unstyled list-inline pull-right">
<li><a href="">AboutUs</a></li>
<li><a href="Customer/shop-Myaccount.php">My Account</a></li>
</ul>
</div>
<!-- END TOP BAR MENU -->
<?php } else { ?>
<!-- BEGIN TOP BAR MENU -->
<div class="col-md-6 col-sm-6 additional-nav">
<ul class="list-unstyled list-inline pull-right">
<li><a href="">AboutUs</a></li>
<li><a href="Authentication/shop-signin.php">Sign In</a></li>
<li><a href="Authentication/shop-signup.php">Sign Up</a></li>
</ul>
</div>
<!-- END TOP BAR MENU -->
<?php } ?>
</div>
</div>
</div>
<!-- END TOP BAR -->
<!-- BEGIN HEADER -->
<div class="header">
<div class="container">
<a class="site-logo" href="index.php"><img src="assets/corporate/img/logos/logo-shop-red.png" alt="Big Bucket"></a>
<!-- BEGIN CART -->
<div class="top-cart-block">
<a href = "Customer/shop-Myaccount.php" ><i class="fa fa-shopping-cart"></a></i>
</div>
<!--END CART -->
<!-- BEGIN NAVIGATION -->
</div>
</div>
<!-- Header END -->
<div class="main">
<div class="container">
<ul class="breadcrumb">
</ul>
<!-- BEGIN CONTENT -->
<div class="col-md-12 col-sm-9">
<h1>ABOUT US</h1>
<div class="content-page" style="margin-bottom:1%;">
<?php echo details($connect, "SELECT value FROM `details` where details ='about'"); ?>
</div>
</div>
<!-- END CONTENT -->
</div>
<!-- END SIDEBAR & CONTENT -->
</div>
</div>
<!-- BEGIN PRE-FOOTER -->
<div class="pre-footer">
<div class="container">
<div class="row">
<!-- BEGIN BOTTOM CONTACTS -->
<div class="col-md-4 col-sm-9 pre-footer-col" >
<h2>Our Contacts</h2>
<address class="margin-bottom-40">
<?php echo details($connect, "SELECT value FROM `details` where details ='address'"); ?><br>
Contact: <?php echo details($connect, "SELECT value FROM `details` where details ='contact'"); ?><br>
Email: <a><?php echo details($connect, "SELECT value FROM `details` where details ='email'"); ?></a><br>
</address>
</div>
<!-- END BOTTOM CONTACTS -->
<!-- BEGIN BOTTOM INFO BLOCK -->
<div class="col-md-3 col-sm-4 pre-footer-col">
<h2>LINKS</h2>
<ul class="list-unstyled">
<li><i class="fa fa-angle-right"></i> <a href="index.php">Home</a></li>
<li><i class="fa fa-angle-right"></i> <a href="shop-about.php">AboutUS</a></li>
<li><i class="fa fa-angle-right"></i> <a href="shop-contacts.php">Contact Us</a></li>
</ul>
</div>
<!-- END INFO BLOCK -->
<!-- BEGIN MAP BLOCK -->
<div class="col-md-4">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3559.267532047077!2d81.0220753150439!3d26.86323998314888!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x399be2f33f24d0dd%3A0x384b9f2eea51c164!2s1%2F5%2C+Viraj+Khand+Rd%2C+Vinamra+Khand%2C+Gomti+Nagar%2C+Lucknow%2C+Uttar+Pradesh+226010!5e0!3m2!1sen!2sin!4v1518115235462" width="400" height="300" frameborder="0" style="border:0" allowfullscreen async defer></iframe>
</div>
<!-- END MAP BLOCK -->
</div>
</div>
</div>
<!-- END PRE-FOOTER -->
<!-- BEGIN FOOTER -->
<center>
<div class="footer">
<div class="container">
<div>
<!-- BEGIN COPYRIGHT -->
Foodi © ALL Rights Reserved | <a href="https://www.linkedin.com/in/mritunjay-srivastava-118451106/" target="blank">Design by : Mritunjay Srivastava </a>.
</div>
<!-- END COPYRIGHT -->
</div>
</div>
</div>
</center>
<!-- END FOOTER -->
<!-- Load javascripts at bottom, this will reduce page load time -->
<script src="assets/plugins/jquery.min.js" type="text/javascript"></script>
<script src="assets/plugins/jquery-migrate.min.js" type="text/javascript"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<!-- END CORE PLUGINS -->
<!-- BEGIN PAGE LEVEL JAVASCRIPTS (REQUIRED ONLY FOR CURRENT PAGE) -->
<script src="assets/plugins/fancybox/source/jquery.fancybox.pack.js" type="text/javascript"></script><!-- pop up -->
<script src="assets/plugins/owl.carousel/owl.carousel.min.js" type="text/javascript"></script><!-- slider for products -->
<script src='assets/plugins/zoom/jquery.zoom.min.js' type="text/javascript"></script><!-- product zoom -->
<script src="assets/plugins/bootstrap-touchspin/bootstrap.touchspin.js" type="text/javascript"></script><!-- Quantity -->
<script src="assets/plugins/uniform/jquery.uniform.min.js" type="text/javascript"></script>
<script src="assets/pages/scripts/contact-us.js" type="text/javascript"></script>
<script src="assets/corporate/scripts/layout.js" type="text/javascript"></script>
<!-- END PAGE LEVEL JAVASCRIPTS -->
</body>
<!-- END BODY -->
</html>