add stub for registration administration

This commit is contained in:
james 2005-01-05 20:08:56 +00:00
parent abf8f8d7a7
commit 4f1265e38d
2 changed files with 10 additions and 1 deletions

View File

@ -1,8 +1,9 @@
<?
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"));
echo "<a href=\"registration.php\">Participant Registration</a> <br />";
send_footer();
?>

8
admin/registration.php Normal file
View File

@ -0,0 +1,8 @@
<?
require("../common.inc.php");
send_header("Administration - Participant Registration");
echo "<a href=\"index.php\">&lt;&lt; ".i18n("Back to Administration")."</a><br />";
send_footer();
?>