forked from twyrostek/4320FinalProjGroup9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.php
31 lines (29 loc) · 897 Bytes
/
navbar.php
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
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="index.php">
Squad OCDX
</a>
</li>
<li>
<a href="index.php">Dashboard</a>
</li>
<li>
<a href="search.php">Search</a>
</li>
<li>
<a href="upload.php">Upload</a>
</li>
<li>
<a href="download_page.php">Download</a>
</li>
<li>
<a href="logout.php">Logout</a>
</li>
<li>
<a href="about.php">About</a>
</li>
</ul>
</div>