-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
24 lines (22 loc) · 861 Bytes
/
Copy pathheader.php
File metadata and controls
24 lines (22 loc) · 861 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $title; ?></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="./home.php" class="brand-logo">Phone Book</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="./add-contact.php">Add Contact</a></li>
<li><a href="./view.php">View Contacts</a></li>
<li><a href="./add-group.php">Add Group</a></li>
<li><a href="./profile-photo.php">Add Profile photo</a></li>
<li><a href="./password-reset.php">Reset Password</a></li>
<li><a href="./logout.php">Logout</a></li>
</ul>
</div>
</nav>