2002-12-19 05:11:25 +00:00
|
|
|
<?php
|
2004-02-02 23:34:39 +00:00
|
|
|
include_once("../inc/db.inc");
|
|
|
|
include_once("../inc/util.inc");
|
2002-12-19 05:11:25 +00:00
|
|
|
|
2003-02-27 22:30:31 +00:00
|
|
|
$email_addr = $_GET["email_addr"];
|
2002-12-19 05:11:25 +00:00
|
|
|
page_head("Account created");
|
2003-03-26 20:54:44 +00:00
|
|
|
if ($email_addr) {
|
|
|
|
echo "
|
|
|
|
<h3>Congratulations - your ".PROJECT." account has been created</h3>
|
|
|
|
<p>
|
|
|
|
";
|
2004-09-13 22:58:48 +00:00
|
|
|
email_sent_message($email_addr);
|
2003-03-26 20:54:44 +00:00
|
|
|
} else {
|
|
|
|
echo "<h3>Activate your ".PROJECT." account</h3>\n";
|
|
|
|
}
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
|
|
|
<form method=post action=login_action.php>
|
2003-02-14 00:05:56 +00:00
|
|
|
<input type=hidden name=next_url value=account_setup.php>
|
2003-02-07 09:00:35 +00:00
|
|
|
<table cellpadding=8>
|
2004-03-03 22:45:06 +00:00
|
|
|
<tr><td align=right>Copy and paste the account ID 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>
|
2003-02-27 22:30:31 +00:00
|
|
|
";
|
2002-12-19 05:11:25 +00:00
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|