forked from science-ation/science-ation
77 lines
1.8 KiB
PHP
77 lines
1.8 KiB
PHP
<?
|
|
include "common.inc.php";
|
|
?>
|
|
<html><body>
|
|
|
|
<h1>General Commands</h1>
|
|
|
|
Login
|
|
<form method="post" action="api/auth/login">
|
|
<input type="text" name="username">
|
|
<input type="password" name="password">
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
|
|
Logout
|
|
<form method="post" action="api/auth/logout">
|
|
<input type="submit" value="Logout">
|
|
</form>
|
|
|
|
<a href="api/conferences">Conference List</a><br />
|
|
Switch Conference
|
|
<form method="post" action="api/conferences/switch">
|
|
<input type="text" size=2 name="conferences_id">
|
|
<input type="submit" value="Switch Conference">
|
|
</form>
|
|
<script type="text/javascript">
|
|
function dateListForConference() {
|
|
var o=document.getElementById('conferences_id');
|
|
window.location.href='api/dates/'+o.value;
|
|
return false;
|
|
}
|
|
</script>
|
|
|
|
<a href="api/dates">Dates List (current conference)</a><br />
|
|
<form method="post" onsubmit="return dateListForConference()">
|
|
Date List
|
|
<input type="text" size=2 id="conferences_id" name="conferences_id">
|
|
<input type="submit" value="Conference Date List">
|
|
</form>
|
|
|
|
<h1>Teacher Specific Commands</h1>
|
|
<a href="api/scienceolympics/teams/list">Science Olympic Teams List</a><br />
|
|
|
|
<form method="post" action="api/scienceolympics/teams/add">
|
|
<input type="text" name="teamname">
|
|
<input type="submit" value="Add Team">
|
|
</form>
|
|
|
|
<form method="post" action="api/scienceolympics/teams/delete">
|
|
<input type="text" size=2 name="id">
|
|
<input type="submit" value="Delete Team">
|
|
</form>
|
|
|
|
<form method="post" action="api/scienceolympics/teams/edit">
|
|
<input type="text" size=2 name="id">
|
|
<input type="text" name="teamname">
|
|
<input type="submit" value="Edit Team">
|
|
</form>
|
|
|
|
<h1>Event Schedule</h1>
|
|
<a href="api/schedule/list">Schedule Listing</a><br/>
|
|
<a href="api/locations/list">Location Listing</a><br/>
|
|
</form>
|
|
|
|
|
|
|
|
<h1>Session Variables</h1>
|
|
<?
|
|
echo json_encode($_SESSION);
|
|
?>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|