-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
50 lines (44 loc) · 1.72 KB
/
header.php
File metadata and controls
50 lines (44 loc) · 1.72 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
<html>
<head>
<meta charset=utf-8>
<title>Orgtree | Search</title>
<meta name=viewport content="width=device-width">
<link rel="stylesheet" href="styles/fonts.css" type="text/css">
<link rel="stylesheet" href="styles/vendor.css">
<link rel="stylesheet" href="styles/main.css">
<script src="scripts/vendor.js"></script>
<style type="text/css"></style>
<link rel="stylesheet" href="styles/headerstyles.css">
<body>
<div class="navbar navbar-inverse navbar-fixed-top " >
<div class="container">
<div class="navbar-header">
<button id='btnNav' type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<h3 class="text-center text-lowercase fw-thkr m-b-lg ls-xs" >orgTree</h3>
</div>
<div id='listNav' class="collapse navbar-collapse">
<ul class="nav navbar-nav">
</ul>
<ul class="nav navbar-nav navbar-right " style="margin-top: 10px;">
<li class=""><a href="index.php">Home</a></li>
<?php if (isset( $_SESSION['role']) ) {
if (( $_SESSION['role'] != "passcode") ) {
?>
<li><a href="profile.php">Profile</a></li>
<?php } }?>
<?php if (isset( $_SESSION['role']) || isset( $_SESSION['passcode']) ) {
?>
<li><a href="Search.php">Search</a></li>
<li><a href="logout.php">logout</a></li>
<li><a href="#" onclick="printing();">PrintTree</a></li>
<?php }else { ?>
<li><a href="login.php">Login</a></li>
<?php } ?>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>