2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/user.inc");
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2004-03-03 22:45:06 +00:00
|
|
|
page_head("Account ID");
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2003-03-19 21:01:32 +00:00
|
|
|
|
|
|
|
echo "<form method=post action=mail_passwd.php>\n";
|
|
|
|
start_table();
|
2004-03-03 22:45:06 +00:00
|
|
|
row1("Get your ".PROJECT." account ID");
|
2003-05-02 17:04:47 +00:00
|
|
|
row2("Email address","<input size=40 name=email_addr>");
|
2003-03-19 21:01:32 +00:00
|
|
|
row2("", "<input type=submit value=Submit>");
|
|
|
|
echo "</table></form>
|
2004-03-03 22:45:06 +00:00
|
|
|
Your account ID will be emailed to you.
|
2003-03-19 21:01:32 +00:00
|
|
|
You should receive it in a few minutes.<p>
|
|
|
|
";
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|