-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathheader.php
More file actions
43 lines (37 loc) · 1.41 KB
/
header.php
File metadata and controls
43 lines (37 loc) · 1.41 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
<header id="header">
<!--Menu Button-->
<a id="biblio" href="index.php">
<h2>Biblio</h2>
</a>
<!-- profile picture -->
<div class="dropdown">
<img src="media/profile pic.png" role="button" id="profile" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="authentication/profile.php">Profile</a>
<a class="dropdown-item" href="#">Setting</a>
<a class="dropdown-item" href="authentication/logout.php">Logout</a>
</div>
</div>
</header>
<nav class="navigation">
<div>
<ul>
<li class="navigation-item active">
<a href="index.php">DASHBOARD</a>
</li>
<li class="navigation-item">
<a href="book.php">BOOKS</a>
</li>
<li class="navigation-item">
<a href="Lending/lending.php">LENDING</a>
</li>
<li class="navigation-item">
<a href="member/member.php">MEMBER</a>
</li>
<li class="navigation-item">
<a href="statistic.php">STATISTIC</a>
</li>
</ul>
</div>
</nav>