-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
56 lines (53 loc) · 1.25 KB
/
header.php
File metadata and controls
56 lines (53 loc) · 1.25 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
<?php session_start();?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes App</title>
</head>
<body>
<?php
if(isset($_SESSION['id'])) :?>
<header class="header-app-nav">
<nav>
<div class="brand">
<a href="app.php"><img src="assets/logo.png" alt="brand logo"></a>
<!-- <a href="#">
<span>Menu</span>
</a> -->
</div>
<ul class="nav-links">
<a href="#">
<li>Profile</li>
</a>
<a href="#">
<li>All Notes</li>
</a>
<a href="#">
<li>Favourites</li>
</a>
<a href="#">
<li>Log out</li>
</a>
</ul>
</nav>
</header>
<?php else :?>
<header class="header-content">
<nav>
<div class="brand">
<a href="index.php"><img src="assets/logo.png" alt="brand logo"></a>
</div>
<ul>
<a href="#">
<li>Home</li>
</a>
<a href="#" class="regLog">
<li>Login/Register</li>
</a>
</ul>
</nav>
</header>
<?php endif;?>