mirror of https://github.com/BOINC/boinc.git
53 lines
1.8 KiB
PHP
53 lines
1.8 KiB
PHP
<?php
|
|
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/countries.inc");
|
|
|
|
check_get_args(array("tnow", "ttok"));
|
|
|
|
$user = get_logged_in_user();
|
|
check_tokens($user->authenticator);
|
|
|
|
page_head(tra("Edit account information"));
|
|
|
|
echo "<form method=post action=edit_user_info_action.php>";
|
|
echo form_tokens($user->authenticator);
|
|
start_table();
|
|
row2(tra("Name %1 real name or nickname%2", "<br><p class=\"text-muted\">", "</p>"),
|
|
"<input name=user_name type=text size=30 value='$user->name'>"
|
|
);
|
|
row2(tra("URL %1 of your web page; optional%2", "<br><p class=\"text-muted\">", "</p>"),
|
|
"http://<input name=url type=text size=50 value='$user->url'>"
|
|
);
|
|
row2_init(tra("Country"),
|
|
"<select name=country>"
|
|
);
|
|
print_country_select($user->country);
|
|
echo "</select></td></tr>\n";
|
|
row2(tra("Postal (ZIP) code %1 Optional%2", "<br><p class=\"text-muted\">", "</p>"),
|
|
"<input name=postal_code type=text size=20 value='$user->postal_code'>"
|
|
);
|
|
|
|
row2("", "<input class=\"btn btn-default\" type=submit value='".tra("Update info")."'>");
|
|
end_table();
|
|
echo "</form>\n";
|
|
page_tail();
|
|
|
|
?>
|