diff --git a/admin/index.php b/admin/index.php
index de2aa451..522e4432 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -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 "Participant Registration
";
send_footer();
?>
diff --git a/admin/registration.php b/admin/registration.php
new file mode 100644
index 00000000..c605b292
--- /dev/null
+++ b/admin/registration.php
@@ -0,0 +1,8 @@
+
+ require("../common.inc.php");
+ send_header("Administration - Participant Registration");
+ echo "<< ".i18n("Back to Administration")."
";
+
+
+ send_footer();
+?>