2003-02-19 20:34:33 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// 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/>.
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
2004-11-20 19:45:44 +00:00
|
|
|
require_once("../inc/email.inc");
|
2003-02-19 20:34:33 +00:00
|
|
|
|
|
|
|
db_init();
|
2003-03-19 21:01:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-02-19 20:34:33 +00:00
|
|
|
|
2005-08-27 20:49:05 +00:00
|
|
|
page_head("Change email address");
|
2003-02-19 20:34:33 +00:00
|
|
|
|
|
|
|
if (is_valid_email_addr($user->email_addr)) {
|
|
|
|
$email_text = $user->email_addr;
|
|
|
|
}
|
|
|
|
|
2003-03-06 17:42:49 +00:00
|
|
|
echo "<form method=post action=edit_email_action.php>\n";
|
|
|
|
start_table();
|
2005-08-27 20:49:05 +00:00
|
|
|
row1("Change the email address of your account");
|
|
|
|
row2("New email address
|
|
|
|
<br><font size=-2>Must be a valid address of the form 'name@domain'</font>",
|
2003-03-06 17:42:49 +00:00
|
|
|
"<input name=email_addr size=50 value='$email_text'>"
|
|
|
|
);
|
2005-10-03 17:28:50 +00:00
|
|
|
|
|
|
|
// we need the password here not for verification,
|
|
|
|
// but because we store it salted with email address,
|
|
|
|
// which is about to change.
|
|
|
|
|
|
|
|
row2(
|
|
|
|
"Password
|
|
|
|
<br><a href=edit_passwd_form.php><font size=-2>No password?</font></a>",
|
|
|
|
"<input type=password name=passwd>"
|
|
|
|
);
|
2005-08-27 20:49:05 +00:00
|
|
|
row2("", "<input type=submit value='Change email address'>");
|
2003-03-06 17:42:49 +00:00
|
|
|
end_table();
|
|
|
|
echo "</form>\n";
|
2003-02-19 20:34:33 +00:00
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|