-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
97 lines (87 loc) · 2.91 KB
/
footer.php
File metadata and controls
97 lines (87 loc) · 2.91 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
<?php
session_start();
include("connection.php");
error_reporting(0);
$cust= $_SESSION['customer'];
?>
<div class="footer">
<div class="container">
<div class="col-md-3 footer-grid">
<h3>About Us</h3>
<p> We Believe in providing you with the Best, Fresh and Supreme Quality products for your daily kitchen, household and much more </p>
</div>
<div class="col-md-3 footer-grid ">
<h3>Menu</h3>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="kitchen.php">Kitchen</a></li>
<li><a href="care.php">Personal Care</a></li>
<li><a href="snacks.php">Snacks and Branded Foods</a></li>
<li><a href="bake.php">Bakery, Eggs and Meat</a></li>
<li><a href="hold.php">Household</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<div class="col-md-3 footer-grid ">
<h3>Customer Services</h3>
<ul>
<li><a href="shipping.php">Shipping</a></li>
<li><a href="terms.php">Terms & Conditions</a></li>
<li><a href="faqs.php">FAQs</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="offer.php">Online Shopping</a></li>
</ul>
</div>
<?php
if(isset($_SESSION['customer']))
{
?>
<div class="col-md-3 footer-grid">
<h3>My Account</h3>
<ul>
<li><a href="order.php">My Orders</a></li>
<li><a href="cust-logout.php">Logout</a></li>
</ul>
</div>
<?php
}
else{
?>
<div class="col-md-3 footer-grid">
<h3>My Account</h3>
<ul>
<li><a href="login.php">Login</a></li>
<li><a href="register.php">Register</a></li>
</ul>
</div>
<?php
}
?>
<div class="clearfix"></div>
<div class="footer-bottom">
<h2 ><a href="index.php"><b>T<br>H<br>E</b>Grocery Store<span>The Best Supermarket</span></a></h2>
<p class="fo-para"> We Believe in providing you with the Best, Fresh and Supreme Quality products for your daily kitchen, household and much more</p>
<ul class="social-fo">
<li><a href="#" class=" face"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#" class=" twi"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#" class=" pin"><i class="fa fa-pinterest-p" aria-hidden="true"></i></a></li>
<li><a href="#" class=" dri"><i class="fa fa-dribbble" aria-hidden="true"></i></a></li>
</ul>
<div class=" address">
<div class="col-md-4 fo-grid1">
<p><i class="fa fa-home" aria-hidden="true"></i> Address </p>
</div>
<div class="col-md-4 fo-grid1">
<p><i class="fa fa-phone" aria-hidden="true"></i> +91 1234567890 </p>
</div>
<div class="col-md-4 fo-grid1">
<p><a href="mailto:info@example.com"><i class="fa fa-envelope-o" aria-hidden="true"></i> mart@gmail.com </a></p>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="copy-right">
<p> © 2019 Grocery store. All Rights Reserved </a></p>
</div>
</div>
</div>