boinc/html/user/account_setup_first_email.php

25 lines
449 B
PHP
Raw Normal View History

<?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_first_download.php");
page_tail();
?>