-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaderFan.php
More file actions
64 lines (52 loc) · 2.58 KB
/
headerFan.php
File metadata and controls
64 lines (52 loc) · 2.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Rock Band</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!--Custom CSS-->
<!-- <link href="../style.css" type="text/css" rel="stylesheet">-->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body style="padding-top:60px;" id="layout">
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse">
<!-- <div class="container ">-->
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" 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="fan-page.php"><strong>Fan Page</strong></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<?php
if(isset($_SESSION['loggedInFanUser'])){
?>
<ul class="nav navbar-nav navbar-right">
<p class="navbar-text">Hello,<?php echo $_SESSION['loggedInFanUser'];?></p>
<li><a href="logout.php">Log out</a></li>
</ul>
<?php
}
else{
?>
<ul class="nav navbar navbar-nav navbar-right">
<li><a href="login.php">Log in</a></li>
</ul>
<?php
}
?>
</div>
</div>
</nav>