2002-12-19 05:11:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("util.inc");
|
|
|
|
|
2003-02-07 09:00:35 +00:00
|
|
|
parse_str(getenv("QUERY_STRING"));
|
2002-12-19 05:11:25 +00:00
|
|
|
page_head("Account created");
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
|
|
|
<h3>Congratulations - your ".PROJECT." account has been created</h3>
|
2002-12-19 05:11:25 +00:00
|
|
|
<p>
|
2003-02-07 09:00:35 +00:00
|
|
|
Your <b>account key</b> has been emailed to $email_addr.
|
|
|
|
<br>
|
|
|
|
Please wait until you receive this email (it may take a minute or two).
|
|
|
|
<form method=post action=login_action.php>
|
|
|
|
<input type=hidden name=url value=account_setup.php>
|
|
|
|
<table cellpadding=8>
|
2003-02-08 02:06:35 +00:00
|
|
|
<tr><td align=right>Then copy and paste the account key here:</td>
|
2003-02-07 09:00:35 +00:00
|
|
|
<td><input name=authenticator size=40></td>
|
|
|
|
</tr><tr>
|
|
|
|
<td align=right>and click here:</td>
|
|
|
|
<td><input type=submit value='OK'></td>
|
|
|
|
</tr></table>
|
|
|
|
</form>
|
2002-12-19 05:11:25 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|