-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadfile.html
45 lines (45 loc) · 1.3 KB
/
headfile.html
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
<!--HTML document to define the layout of the header and the navigation bar-->
<link href='https://fonts.googleapis.com/css2?family=Questrial&family=Roboto&display=swap' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css2?family=Raleway&display=swap' rel='stylesheet'>
<div id='container'>
<div id='navbar'>
<div id='header'>
<a style='text-decoration:none' href='index.php'>
<h1>homteq`</h1>
<h2>your home for home tech</h2>
</a>
<h3><?php echo "London, ".date('l d F Y h:i:s');?> </h3>
<div id="navigation">
<ul>
<?php if (!isset($_SESSION['userid']))
{
?>
<div>
<li><a href='index.php'>Home Tech</a></li>
<li><a href='aboutus.php'>About Us</a></li>
<li><a href='signup.php'>Sign Up</a></li>
<li><a href='login.php'>Login</a></li>
</div>
<div>
<li><a href='basket.php'>Smart Basket</a></li>
<li><a href='login.php'>Staff Login</a></li>
</div>
<?php
}
else
{
?>
<div>
<li><a href='index.php'>Home Tech</a></li>
<li><a href='aboutus.php'>About Us</a></li>
<li><a href='logout.php'>Logout</a></li>
</div>
<div>
<li><a href='basket.php'>Smart Basket</a></li>
</div>
<?php
}
?>
</ul>
</div>