mirror of https://github.com/BOINC/boinc.git
19 lines
292 B
PHP
19 lines
292 B
PHP
|
<?php
|
||
|
|
||
|
include_once("db.inc");
|
||
|
include_once("util.inc");
|
||
|
include_once("login.inc");
|
||
|
include_once("prefs.inc");
|
||
|
|
||
|
db_init();
|
||
|
|
||
|
$user = get_user_from_cookie();
|
||
|
if ($user == NULL) {
|
||
|
print_login_form();
|
||
|
} else {
|
||
|
$prefs = prefs_parse($user->prefs);
|
||
|
prefs_form_disk($user, $prefs);
|
||
|
}
|
||
|
|
||
|
?>
|