-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
40 lines (31 loc) · 822 Bytes
/
header.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>medical management system</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<style>
.error {color: #FF0000;}
</style>
</head>
<body>
<?php
if($_SESSION['adminstatus'] == ""){
header("location:adminlogin.php");
}
?>
<div class="container-fluid">
<div class="header_top">
<span style="font-size:50px;color:#2c2f84;font-weight:bolder;margin-left:15px;">Vidhi Chambers</span>
</div>
<!-- this is for menu -->
<div class="navbar navbar-default nav">
<nav class="menu">
<ul>
<li><a href="viewAppoinment.php">View Appoinment</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</nav>
</div>