-
Notifications
You must be signed in to change notification settings - Fork 0
/
emaster.php
92 lines (71 loc) · 3.6 KB
/
emaster.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
$base_url = "http://localhost/Hostel-Management-System/";
$ses = new \sessionManager\sessionManager();
//$ses->start();
$name = $ses->Get("name");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title><?php echo $GLOBALS['title']; ?></title>
<!-- Bootstrap Core CSS -->
<link href="<?php echo $base_url; ?>dist/css/bootstrap.min.css" rel="stylesheet">
<link href="<?php echo $base_url; ?>dist/css/datepicker.css" rel="stylesheet">
<!-- MetisMenu CSS -->
<link href="<?php echo $base_url; ?>dist/css/metisMenu.min.css" rel="stylesheet">
<!-- Timeline CSS -->
<link href="<?php echo $base_url; ?>dist/css/timeline.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="<?php echo $base_url; ?>dist/css/sb-admin-2.css" rel="stylesheet">
<!-- Morris Charts CSS -->
<link href="<?php echo $base_url; ?>dist/css/morris.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="<?php echo $base_url; ?>dist/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="<?php echo $base_url; ?>dist/css/dataTable.css" rel="stylesheet" type="text/css">
<link href="<?php echo $base_url; ?>dist/css/timepicker.css" rel="stylesheet" type="text/css">
<link href="<?php echo $base_url; ?>dist/css/calendar.css" rel="stylesheet" type="text/css">
<link href="<?php echo $base_url; ?>dist/css/custom_2.css" rel="stylesheet" type="text/css">
<link href="<?php echo $base_url; ?>dist/css/app.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrapper">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0">
<div class="navbar-header">
<button type="button" class="navbar-toggle" 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>
<img alt="HMS" class="pull-left" src="<?php echo $base_url . '' ?>"><a class="navbar-brand titlehms" href="<?php echo $base_url . 'edashboard.php' ?>">Hostel Management System</a>
</div>
<!-- /.navbar-header -->
<ul class="nav navbar-top-links navbar-right">
<li>
<h5 class="titlehms"><?php echo $name ?></h5>
</li>
<!-- /.dropdown -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="fa fa-user fa-fw"></i> <i class="fa fa-caret-down"></i>
</a>
<ul class="dropdown-menu dropdown-user">
<li><a href="<?php echo $base_url; ?>ui/usr/profilee.php"><i class="fa fa-user fa-fw"></i>User Profile</a>
</li>
<li class="divider"></li>
<li><a href="<?php echo $base_url; ?>logout.php"><i class="fa fa-sign-out fa-fw"></i> Logout</a>
</li>
</ul>
<!-- /.dropdown-user -->
</li>
<!-- /.dropdown -->
</ul>
<!-- /.navbar-top-links -->
<!-- /.navbar-static-side -->
</nav>