-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor navbar out of index into navbar.php
Part of work on #23
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
require_once("util.php"); | ||
|
||
?> | ||
|
||
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="#">Vadweb</a> | ||
</div> | ||
|
||
<div class="navbar-collapse collapse"> | ||
<ul class="nav navbar-nav"> | ||
<li><a style="color:#FFF" href="/register.php">Register</a></li> | ||
<li><a style="color:#FFF" href="/files.php">File Uploads</a></li> | ||
<li><a style="color:#FFF" href="/account.php">Account Settings</a></li> | ||
</ul> | ||
|
||
<?php printNavBarForms("files.php"); ?> | ||
</div> | ||
</div><!--/.navbar-collapse --> | ||
</div> | ||
|
||
|