diff --git a/html/ops/create_account_action.php b/html/ops/create_account_action.php
index dbfa1c9eca..552b81f820 100644
--- a/html/ops/create_account_action.php
+++ b/html/ops/create_account_action.php
@@ -26,9 +26,17 @@
exit();
}
- echo "Account created";
+ $url = URL_BASE."/account_created.php?email_addr=".urlencode($email_addr);
+ echo "
+
Account created for:
+ $user_name
+ at email address:
+ $email_addr
+ Note: The user (not YOU, the admin) must confirm by visiting:
+ $url
+ ";
+
- $url = URL_BASE."/account_created.php?email_addr=".urlencode($email_addr);
mail($email_addr, PROJECT. " account created",
"This email confirms the creation of your ".PROJECT." account.
@@ -37,14 +45,13 @@
Your account ID: $authenticator\n
Please save this email.
-You will need your account key to log in to the ".PROJECT." web site.
+You will need your account Id to log in to the ".PROJECT." web site.
-To finish registration, go to
+To finish registration, you must confirm. Please go to:
$url
-
-Please subscribe to the BOINC beta-test mail list:
-https://lists.sourceforge.net/lists/listinfo/boinc-beta
"
);
+
+
?>