-
Notifications
You must be signed in to change notification settings - Fork 35
/
adminpanel.php
57 lines (50 loc) · 1.62 KB
/
adminpanel.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
<?php
// load up global things
include_once 'autoloader.php';
if ( !isAdmin() ) {
header( 'location: index.php' );
}
?>
<!DOCTYPE html>
<html>
<head>
<!-- title of our page -->
<title>Easy, Code Is | Admin Panel</title>
<!-- include fonts -->
<link href="https://fonts.googleapis.com/css?family=Coda" rel="stylesheet">
<!-- need this so everything looks good on mobile devices -->
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<!-- css styles for our signup page-->
<link href="css/global.css" rel="stylesheet" type="text/css">
<link href="css/adminpanel.css" rel="stylesheet" type="text/css">
<!-- jquery -->
<script type="text/javascript" src="js/jquery.js"></script>
<!-- include our loader overlay script -->
<script type="text/javascript" src="js/loader.js"></script>
<script>
$( function() { // once the document is ready, do things
// initialize our loader overlay
loader.initialize();
} );
</script>
</head>
<body>
<div class="site-header">
<div class="site-header-pad">
<a class="header-home-link" href="index.php">
Easy, Code Is
</a>
</div>
</div>
<div class="site-content-container">
<div class="site-content-centered">
<div class="site-content-section">
<div class="site-content-section-inner">
<div class="section-heading">Admin Panel</div>
<div class="admin-sub-heading">Logged in as <?php echo $_SESSION['user_info']['first_name']; ?> <?php echo $_SESSION['user_info']['last_name']; ?></div>
</div>
</div>
</div>
</div>
</body>
</html>