completeAuth($token, $_GET); $openid = null; // React to the server's response. $info is the OpenID that was // tried. if ($status != Auth_OpenID_SUCCESS) { $msg = sprintf("Verification of %s failed.", $info); } else { if ($info) { // This means the authentication succeeded. $openid = $info; $success = sprintf("You have successfully verified %s as your identity.", $openid); } else { // This means the authentication was ancelled. $msg = 'Verification cancelled.'; } } include 'index.php'; ?>