boinc/html/user/account_created.php

38 lines
1.2 KiB
PHP

<?php
include_once("../inc/db.inc");
include_once("../inc/util.inc");
$email_addr = $_GET["email_addr"];
page_head("Account created");
if ($email_addr) {
echo "
<h3>Congratulations - your ".PROJECT." account has been created</h3>
<p>
Your <b>account ID</b> has been emailed to $email_addr.
<br>
Please wait until you receive this email.
If it doesn't arrive in a minute or two,
your ISP may be blocking it as 'spam'.
In this case please contact your ISP and
ask them to not block email from ".URL_BASE.".
";
} else {
echo "<h3>Activate your ".PROJECT." account</h3>\n";
}
echo "
<form method=post action=login_action.php>
<input type=hidden name=next_url value=account_setup.php>
<table cellpadding=8>
<tr><td align=right>Copy and paste the account ID here:</td>
<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>
";
page_tail();
?>