mirror of https://github.com/BOINC/boinc.git
30 lines
724 B
PHP
30 lines
724 B
PHP
|
<?php
|
||
|
|
||
|
require_once("edit.inc");
|
||
|
require_once("util.inc");
|
||
|
|
||
|
db_init();
|
||
|
$authenticator = init_session();
|
||
|
$user = get_user_from_auth($authenticator);
|
||
|
require_login($user);
|
||
|
|
||
|
page_head("Edit email address");
|
||
|
|
||
|
if (is_valid_email_addr($user->email_addr)) {
|
||
|
$email_text = $user->email_addr;
|
||
|
} else {
|
||
|
$email_text = "Verification pending";
|
||
|
}
|
||
|
|
||
|
echo "<form method=post action=edit_email_action.php>\n
|
||
|
".TABLE2."\n
|
||
|
<tr><td align=right><b>Email address</b>
|
||
|
<br><font size=-1>Must be a valid address of the form 'name@domain'</font></b></td>\n
|
||
|
<td><input name=email_addr size=50 value='$email_text'></td></tr>
|
||
|
<tr><td><br></td><td><input type=submit value='OK'>\n
|
||
|
</table>\n
|
||
|
</form>";
|
||
|
page_tail();
|
||
|
|
||
|
?>
|