-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
23 lines (18 loc) · 747 Bytes
/
header.php
File metadata and controls
23 lines (18 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<nav class="navbar navbar-expand-sm bg-light sticky-top">
<div class="container">
<a class="navbar-brand headStyle" href="main.php"><img src="image/favicon.jpg" width="30" height="30" class="rounded-circle">BloodCare</a>
<?php if (isset($_SESSION['hid'])) { ?>
<?php } elseif (isset($_SESSION['rid'])) { ?>
<?php } else { ?>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link btn btn-light" href="login.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-light" href="register.php">Register</a>
</li>
</ul>
<?php } ?>
</div>
</div>
</nav>