-
Notifications
You must be signed in to change notification settings - Fork 2
/
navbar1.php
51 lines (44 loc) · 1.48 KB
/
navbar1.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php include('connection.php') ?>
<style>
#nav{
background: #0071BC;
border-radius: 10px;
}
body.landing #header nav a{
color:white;
font-size:15px;
}
#nav ul li a{
font-size: 15px;
color: black;
padding: 4px;
}
#nav ul li a:hover{
background:#29ABE2;
font-size:20px;
border-radius:30px;
border-bottom:5px solid #0071BC;
}
</style>
<header id="header">
<h1><img src="images/logo.png" style="width:300px; height:70px;margin-top:13px;"> </h1>
<nav id="nav" >
<ul>
<li style="padding-left:20px;"><a href="index1.php">Home</a></li>
<?php if(!isset($_SESSION['user'])) {?>
<li><a href="signup.php" class="button special">Sign Up</a></li>
<li><a href="login.php" class="button special">Log In</a></li>
<?php } else {?>
<!--<li><a href="feedback.php">Feedback</a></li> -->
<!--<a href="update.php">Update</a></li>-->
<!--<li><a href="deposit.php">Deposit</a></li> -->
<!--<li><a href="withdraw.php">Withdraw</a></li> -->
<li><a href="customerdetail.php">View Customer</a></li>
<li><a href="transcation.php">View Transcation</a></li>
<li><a href="changepass.php">Change Password</a></li>
<!--<li><a href="close.php">Close A/C</a></li> -->
<li style="padding-right:20px;"><a href="logout.php">Logout</a></li>
<?php } ?>
</ul>
</nav>
</header>