mirror of https://github.com/BOINC/boinc.git
25 lines
448 B
PHP
25 lines
448 B
PHP
<?php
|
|
|
|
include_once("db.inc");
|
|
include_once("util.inc");
|
|
include_once("prefs.inc");
|
|
|
|
$authenticator = init_session();
|
|
db_init();
|
|
|
|
$user = get_user_from_auth($authenticator);
|
|
if ($user == NULL) {
|
|
print_login_form();
|
|
exit();
|
|
}
|
|
page_head("Account setup: email options", $user);
|
|
echo "
|
|
<h3>Account setup: email options</h3>
|
|
<br>
|
|
";
|
|
$prefs = default_prefs();
|
|
prefs_form_email($prefs, "account_setup_nonfirst_done.php");
|
|
page_tail();
|
|
|
|
?>
|