diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-05-12 16:59:36 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-05-12 16:59:36 -0700 |
commit | dd24e2c973a7979894971bdc38d904d2aecc7d5d (patch) | |
tree | 2f8474d22cbf29749219bd6dd543bb22b959465e /htdocs/moderate/src/header.inc.php | |
parent | e159ae5209a561043ceb89aa640b207df15181b7 (diff) |
Well, you can see posts on the moderation panel now
Diffstat (limited to 'htdocs/moderate/src/header.inc.php')
-rw-r--r-- | htdocs/moderate/src/header.inc.php | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/htdocs/moderate/src/header.inc.php b/htdocs/moderate/src/header.inc.php new file mode 100644 index 0000000..4310009 --- /dev/null +++ b/htdocs/moderate/src/header.inc.php @@ -0,0 +1,64 @@ +<?php +/* $Id: header.inc.php 151 2011-04-19 23:21:06Z jessemorgan $ */ + +if (!isset($SESSION['currentUser']['id'])) { + if (isset($_POST['login_email']) and isset($_POST['login_password'])) { + $db = getDatabase(); + + $email = addslashes($_POST['login_email']); + $password = sha1($_POST['password']); + + $query = "SELECT * FROM jpm_users WHERE `email`='$email' AND `password`='$password'"; + $result = $db->fetchAssocRow($query); + + if ($result) { + $SESSION['currentUser'] = $result; + } + + } +} + +?><!DOCTYPE html> +<html> +<head> + <link rel="stylesheet" type="text/css" href="<?= $CONFIG['siteroot']?>/admin/admin.css" /> + + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> + <script> + $(document).ready(function() { + $('a.delete').click(function() { + return confirm('Are you sure you want to delete this?'); + + }); + + $('a.delete img').hover(function() { + $(this).attr('src', '<?= $CONFIG['siteroot'] ?>/admin/images/delete.png'); + }, + function() { + $(this).attr('src', '<?= $CONFIG['siteroot'] ?>/admin/images/deletegray.png'); + }); + + }); + </script> + +</head> +<body> + +<h1><a href="<?= $CONFIG['siteroot']?>/admin/index.php">Foursquare Admin Panel</a></h1> +<div id="nav"> + <h2>Navigation</h2> + <ul> + <li><a href="<?= $CONFIG['siteroot']?>/admin/online-campus">Online Services</a> + <ul> + <li><a href="<?= $CONFIG['siteroot']?>/admin/online-campus/attendance">Online Attendance</a></li> + </ul> + </li> + + <li><a href="<?= $CONFIG['siteroot']?>/troubleshoot.php">Troubleshooting Page</a></li> + <li><a href="<?= $CONFIG['siteroot']?>/admin/accounts/">Accounts</a></li> + <li><a href="<?= $CONFIG['siteroot']?>/admin/changepassword.php">Change Password</a></li> + <li><a href="<?= $CONFIG['siteroot']?>/admin/login.php?logout">Logout</a></li> + </ul> +</div> + +<div id="content"> |