Exemplo n.º 1
0
<?php

include "autoloader.php";
if (!isset($_SESSION['robo'])) {
    header('Location: index.php');
    exit;
}
if (isset($_POST['logout'])) {
    unset($_SESSION['robo']);
    header('Location: index.php');
    exit;
}
$username = $_SESSION['robo'];
$api = new roboSISAPI();
if (!$api->isAdmin($username)) {
    header('Location: index.php');
    exit;
}
date_default_timezone_set('America/Los_Angeles');
// all times are in PST
if (isset($_GET['sheldon'])) {
    $api->inputCheckIn("12erich");
    echo "Welcome back, Dr. Cooper.";
    exit;
}
?>
<!DOCTYPE html>
<head>
	<meta charset="utf-8">
	<title>Robotics 1072 Dashboard - Admin</title>
	<meta name="description" content="">