mirror of https://github.com/BOINC/boinc.git
24 lines
364 B
PHP
24 lines
364 B
PHP
<?php
|
|
|
|
require_once("edit.inc");
|
|
require_once("util.inc");
|
|
|
|
db_init();
|
|
$user = get_user_from_cookie();
|
|
|
|
if ($user) {
|
|
$head = sprintf("Edit %s's User Information", $user->name);
|
|
page_head($head);
|
|
print_edit_user_info($user);
|
|
} else {
|
|
page_head("Edit User Information");
|
|
echo NOLOGIN;
|
|
}
|
|
page_tail();
|
|
|
|
?>
|
|
|
|
|
|
|
|
|