mirror of https://github.com/BOINC/boinc.git
19 lines
295 B
PHP
19 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
require_once("db.inc");
|
||
|
require_once("util.inc");
|
||
|
require_once("edit.inc");
|
||
|
|
||
|
db_init();
|
||
|
$user = get_user_From_cookie();
|
||
|
|
||
|
page_head("Change Password");
|
||
|
if ($user) {
|
||
|
print_change_password($user);
|
||
|
} else {
|
||
|
echo NOLOGIN;
|
||
|
}
|
||
|
page_tail();
|
||
|
|
||
|
?>
|