account creation

svn path=/trunk/boinc/; revision=1106
This commit is contained in:
David Anderson 2003-03-26 20:54:44 +00:00
parent ae0e8b7089
commit 450a1cb01f
2 changed files with 17 additions and 6 deletions

View File

@ -4,16 +4,22 @@
$email_addr = $_GET["email_addr"]; $email_addr = $_GET["email_addr"];
page_head("Account created"); page_head("Account created");
if ($email_addr) {
echo "
<h3>Congratulations - your ".PROJECT." account has been created</h3>
<p>
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).
";
} else {
echo "<h3>Activate your ".PROJECT." account</h3>\n";
}
echo " echo "
<h3>Congratulations - your ".PROJECT." account has been created</h3>
<p>
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> <form method=post action=login_action.php>
<input type=hidden name=next_url value=account_setup.php> <input type=hidden name=next_url value=account_setup.php>
<table cellpadding=8> <table cellpadding=8>
<tr><td align=right>Then copy and paste the account key here:</td> <tr><td align=right>Copy and paste the account key here:</td>
<td><input name=authenticator size=40></td> <td><input name=authenticator size=40></td>
</tr><tr> </tr><tr>
<td align=right>and click here:</td> <td align=right>and click here:</td>

View File

@ -49,6 +49,11 @@ row2("", "<input type=submit value=\"Create account\">");
end_table(); end_table();
echo "</form>\n"; echo "</form>\n";
echo "If you already received an account key,
<a href=account_created.php>click here</a>
to activate your account
";
page_tail(); page_tail();
?> ?>