. require_once("../inc/db.inc"); require_once("../inc/util.inc"); require_once("../inc/user.inc"); check_get_args(array()); function show_email_form() { echo "

" .tra("1) If you know your account's email address, and you can receive email there:")."

" .tra("Enter the email address below, and click OK. You will be sent email instructions for resetting your password."); start_table(); echo "

\n"; row2(tra("Email address"),""); row2("", ""); echo "
"; end_table(); } function show_auth_form() { $master_url = parse_config(get_config(), ""); $x = strstr($master_url, "//"); $x = substr($x, 2); $x = rtrim($x, "/"); $x = str_replace("/", "_", $x); $account_file = "account_$x.xml"; echo "

" .tra("2) If you forgot your account's email address, or you can't receive email there:")."

" .tra("If you have run BOINC under this account, you can still access it. Here's how:")." "; start_table(); echo "
\n"; row2(tra("Log in with authenticator"), ""); row2(tra("Stay logged in on this computer"), "" ); row2("", ""); echo "
"; end_table(); } page_head(tra("Forgot your account info?")); show_email_form(); if (!no_computing()) { show_auth_form(); } page_tail(); ?>