-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.php
95 lines (78 loc) · 4.45 KB
/
about-us.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
<?php
session_start();
if (!isset($_SESSION['username'])){
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="images/logo.jpg" rel="shortcut icon">
<title>eazi cakes</title>
<!-- core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
</head><!--/head-->
<!--*********************************************START OF NAVIGATION BAR****************************************-->
<body>
<nav class="navbar navbar-inverse" role="banner">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.php"><h4 class="wow fadeInDown" style="margin-top:20px; color:#FFF;"><img src="images/logo.jpg" width="15% "/> Sweet and Healthy Cakes</h4></a>
</div>
<div class="collapse navbar-collapse navbar-right wow fadeInDown">
<ul class="nav navbar-nav">
<li><a href="index.php"><i class="fa fa-home"></i>Home</a></li>
<li class="active" ><a href="about-us.php">About Us</a></li>
<li ><a href="available.php">Availables</a></li>
<li><a href="contacts.php">Contacts</a></li>
</ul>
</div>
</div><!--/.container-->
</nav><!--/nav-->
<section id="contact-info">
<div class="center wow fadeInDown">
<h2>Mission</h2>
<p class="lead">We are truted fresh food partner and local provider of ready eat food program. This associated order and bussiness information,food consulting, and local controlled logistics. Food Ordering system provide best in class food service enterprise since its founding in 2015.</p>
</div>
<div class="center wow fadeInDown">
<h2>Vision</h2>
<p class="lead">To be premier company thats meets and eceeds the demands of today's lifestyles by providing ready, convenient, innovative and healthy food products to multi-location requester nationally while adhering to our core values </p>
</div>
<div class="center wow fadeInDown">
<h2>Core Values</h2>
<p class="lead">Christ-centered<br>Passionate for result<br>Enterprenuetal Spirit<br>Committed to the organization<br>Growth oriented</p>
</div>
<div class="center wow fadeInDown">
<h2>FoodOrderingSystem Profile</h2>
<p class="lead">FoodOrderingSystem (FOS) Services aim to provide excellent quality service to client ensuring customer satisfaction through a service with value and personalization performed by a highly knowledgeable and experienced professional. My concentration shall and always will be to assist the clients in achieving their dream of a perfect food eating while maintaining my ideas and integrity in the line of customer.</p>
</div>
</section>
<!--*************************************************** FOOTERS **********************************************-->
<?php include('includes/footer.php');?>
<?php include('loginModal.php');?>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/main.js"></script>
<script src="js/wow.min.js"></script>
</body>
</html>
<?php
} else if(isset($_SESSION['username'])) {
include('includes/admin.php');
} ?>