. require_once("../inc/util.inc"); require_once("../inc/email.inc"); check_get_args(array()); redirect_to_secure_url("edit_email_form.php"); $user = get_logged_in_user(); page_head(tra("Change email address")); $email_text = ""; if (is_valid_email_addr($user->email_addr)) { $email_text = $user->email_addr; } echo "
\n"; start_table(); row1(tra("Change the email address of your account")); row2(tra("New email address"). "

".tra("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( tra("Password"). "

".tra("No password?")."

", "" ); row2("", ""); end_table(); echo "
\n"; page_tail(); ?>