. require_once("../inc/db.inc"); require_once("../inc/util.inc"); require_once("../inc/email.inc"); db_init(); $user = get_logged_in_user(); page_head("Change email address"); if (is_valid_email_addr($user->email_addr)) { $email_text = $user->email_addr; } echo "
\n"; start_table(); row1("Change the email address of your account"); row2("New email address
Must be a valid address of the form 'name@domain'", "" ); // we need the password here not for verification, // but because we store it salted with email address, // which is about to change. row2( "Password
No password?", "" ); row2("", ""); end_table(); echo "
\n"; page_tail(); ?>