-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
130 lines (119 loc) · 4.88 KB
/
Copy pathabout.php
File metadata and controls
130 lines (119 loc) · 4.88 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
<?php
session_start();
require ("db_conn.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="descreption" content="Welcome to the most extraodinary restaurent in Dindigul">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style4.css">
<title>7 Maadi</title>
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"><a>7 Maadi
</a></h1>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="menu.php">Menu</a></li>
<?php
if(isset($_SESSION["loggedin"]) && ($_SESSION["loggedin"]===true)){
if($_SESSION["user"]=='admin')
{ ?>
<li><a href="feedback.php">Customer Feedback</a></li>
<?php
} else {
?>
<li><a class="current" href="about.php">About</a></li>
<?php
}
?>
<?php
}
else{
?>
<?php
}
?>
<!-- -------------- -->
<?php
if(isset($_SESSION["loggedin"]) && ($_SESSION["loggedin"]===true)){
if($_SESSION["user"]=='admin')
{ ?>
<li><a href="price_change.php">Price Change</a></li>
<?php
} else {
?>
<li><a href="contact.php">Contact</a></li>
<?php
}
?>
<?php
}
else{
?>
<?php
}
?>
<?php
//Check if the user is loged in, if yes then the users will be able to items to the cart
if(isset($_SESSION["loggedin"]) && ($_SESSION["loggedin"]===true)){
if($_SESSION["user"]=='admin')
{ ?>
<li><a href="admin_dashboard.php">Orders</a></li>
<?php
} else {
?>
<li><a href="myorders.php">My Orders</a></li>
<?php
}
?>
<li><a href="logout.php">LogOut</a></li>
<?php
}
else{
?>
<li><a href="contact.php">Contact</a></li>
<li><a href="login.php">Login</a></li>
<li><a href="sign_up.php">Sign Up</a></li>
<?php
}
?>
</ul>
</div>
</nav>
<!-- <div id="showcase">
<div class="container">
<div class="showcase-content">
<h1>ABOUT PAGE</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quibusdam quisquam placeat vitae sequi? Quas iusto explicabo labore corrupti, veritatis beatae? Odit, qui. At id nemo provident voluptatum suscipit itaque a.</p>
</div>
</div>
</div> -->
<div class="about_page">
<div class="left_div">
<img src="images/about_image_1.PNG" alt="">
<img src="images/about_image_2.PNG" alt="">
</div>
<div class="right_div">
<div class="about_textbox">
<h1>ABOUT US</h1>
<span>A RESTAURENT THAT EVERY CITY NEEDS :))</span>
<p>At 7 Maadi, we’re serving up more than continental and western. In fact, 7 Maadi Famous Garlic Bread is one of our
unexpected
specialties. Reminiscent of butcher shops back in the day, each slow-smoked, sizzling prime chop
measures seven-fingers high. Our signature recipe, that we have perfected for more than four
decades, is rubbed with a secret blend of seasonings, cured and roasted on a rotisserie with pecan
wood for up to six hours before it’s topped with 7 Maadi signature herb-garlic butter, then carved
tableside.</p>
</div>
</div>
</div>
</header>
</body>
</html>