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-12-06 22:41:19 +00:00
|
|
|
page_head("Get account key");
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2005-04-15 18:43:53 +00:00
|
|
|
echo "<form method=post action=mail_passwd.php>\n";
|
|
|
|
start_table();
|
|
|
|
row2("Email address","<input size=40 name=email_addr>");
|
|
|
|
row2("", "<input type=submit value=OK>");
|
|
|
|
echo "</table></form>
|
|
|
|
Your account key will be emailed to you.
|
|
|
|
You should receive it in a few minutes.<p>
|
|
|
|
";
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|