-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLoggedInHeader.php
More file actions
29 lines (27 loc) · 941 Bytes
/
LoggedInHeader.php
File metadata and controls
29 lines (27 loc) · 941 Bytes
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
<html>
<head>
<title>Hoo's Pizza</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<header id="header">
<nav id="nav">
<ul>
<!--<li>-->
<!--<a href="#" class="icon solid fa-angle-down">Browse</a>
<ul>-->
<li><a href="index.php">Home</a></li>
<li><a href="Order.php">Order a Pizza!</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="locations.php">Locations</a></li>
<li><a href="OrderStatus.php">Check Order Status</a></li>
<li><a href="account.php">Account Info</a></li>
<li><a href="rewards.php">Rewards</a></li>
<li><a href='logout.php'>Click here to log out</a></li>
</ul>
</nav>
</header>
</body>
</html>