science-ation/admin/index.php

11 lines
361 B
PHP
Raw Normal View History

2004-11-10 13:59:32 +00:00
<?
require("../common.inc.php");
send_header("Administration");
echo error(i18n("Note: this section will normally be password protected. It is left open for now for debugging and testing purposes"));
2004-11-10 13:59:32 +00:00
echo "<a href=\"registration.php\">Participant Registration</a> <br />";
echo "<a href=\"reports.php\">Printable Reports</a> <br />";
2004-11-10 13:59:32 +00:00
send_footer();
?>