-
Notifications
You must be signed in to change notification settings - Fork 6
/
admin-header.php
86 lines (75 loc) · 2.97 KB
/
admin-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
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
<?php
include_once('lib/Session.php');
Session::check_session();
$loginmsg = Session::get('loginmsg');
$user_id = Session::get('user_id');
$user_name = Session::get('user_name');
$fname = Session::get('fname');
$lname = Session::get('lname');
$mobile = Session::get('mobile');
$fname = Session::get('fname');
if (isset($_GET['action']) && $_GET['action'] == "logout"){
Session::destroy();
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Home page</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="http://cdn.jsdelivr.net/semantic-ui/1.2.0/semantic.min.css"/>
<link rel="stylesheet" type="text/css" href="css/_bootstrap-datetimepicker.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link rel="stylesheet" type="text/css" href="owl.carousel/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="owl.carousel/owl.theme.default.min.css">
<link rel="stylesheet" type="text/css" href="nivo.slider/nivo.slider.css">
<link rel="stylesheet" type="text/css" href="nivo.slider/themes/default/default.css">
<link rel="stylesheet" type="text/css" href="fonts/custom-fonts.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!--[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>
<header class="header">
<div class="container">
<div class="row">
<div class="col-sm-12 clearfix">
<div class="hdr-adm clearfix">
<div class="hdr-adm-lft">
<div class="click-div">
<i class="fa fa-certificate" aria-hidden="true"></i>
<span>Administrator</span>
</div>
<ul class="hide-div">
<li>
<i class="fa fa-certificate" aria-hidden="true"></i>
<span>Administrator</span>
</li>
<li class="clearfix">
<div class="change-userName">
<a href="#">change username</a>
</div>
<div class="change-pass text-right">
<a href="#">change password</a>
</div>
</li>
</ul>
</div>
<div class="hdr-adm-rgt">
<a href="?action=logout"><i class="fa fa-sign-out" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</header><!-- end of header -->
<?php
include_once('admin-dashboard-aside.php');
?>