2004-06-09 19:15:57 +00:00
|
|
|
<?php
|
2005-02-08 03:33:35 +00:00
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2003-08-22 05:36:25 +00:00
|
|
|
// use this to create accounts while regular account creation is disabled
|
|
|
|
|
2005-08-07 01:33:15 +00:00
|
|
|
echo "DEPRECATED\n";
|
|
|
|
exit();
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/util_ops.inc");
|
2003-08-22 05:36:25 +00:00
|
|
|
|
2005-02-08 03:33:35 +00:00
|
|
|
admin_page_head("Create Account");
|
2003-08-22 05:36:25 +00:00
|
|
|
echo "
|
2005-02-08 03:33:35 +00:00
|
|
|
<form action=\"create_account_action.php\">
|
2003-08-22 05:36:25 +00:00
|
|
|
";
|
|
|
|
start_table();
|
2005-02-08 03:33:35 +00:00
|
|
|
row2("Name", "<input size=\"32\" name=\"user_name\">");
|
|
|
|
row2("Email address", "<input size=\"32\" name=\"email_addr\">");
|
|
|
|
row2("", "<input type=\"submit\" value=\"OK\">");
|
|
|
|
end_table();
|
2003-08-22 05:36:25 +00:00
|
|
|
echo "
|
|
|
|
</form>
|
|
|
|
";
|
|
|
|
|
2005-02-08 03:33:35 +00:00
|
|
|
admin_page_tail();
|
2003-08-22 05:36:25 +00:00
|
|
|
?>
|