mirror of https://github.com/BOINC/boinc.git
43 lines
1016 B
PHP
43 lines
1016 B
PHP
<?php
|
|
include_once("../inc/db.inc");
|
|
include_once("../inc/util.inc");
|
|
include_once("../inc/email.inc");
|
|
|
|
$email_addr = get_str("email_addr", true);
|
|
|
|
db_init();
|
|
|
|
if ($email_addr) {
|
|
// here when this page is reached via create_account_action.php
|
|
//
|
|
page_head("Account created");
|
|
echo "
|
|
<h3>Congratulations - your ".PROJECT." account has been created</h3>
|
|
<p>
|
|
";
|
|
$email_addr = process_user_text($email_addr);
|
|
email_sent_message($email_addr);
|
|
} else {
|
|
// here when user followed link in account-confirm email
|
|
//
|
|
page_head("Configure account");
|
|
}
|
|
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>
|
|
To continue, paste the account key here:
|
|
</td>
|
|
<td><input name=authenticator size=40></td>
|
|
</tr><tr>
|
|
<td align=right>and click</td>
|
|
<td><input type=submit value='OK'></td>
|
|
</tr></table>
|
|
</form>
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|