diff --git a/php/browserid.php b/php/persona.php similarity index 94% rename from php/browserid.php rename to php/persona.php index 49234b0..472bab6 100644 --- a/php/browserid.php +++ b/php/persona.php @@ -14,21 +14,21 @@ print_header(); echo "

Logged in as: " . $result->email . "

"; echo '

Logout

'; - echo "

Back to login page

"; + echo "

Back to login page

"; print_footer($result->email); } else { // Login-attempt not successful print_header(); echo "

Error: " . $result->reason . "

"; // Note that the explanation is technical and not user friendly - echo "

Back to login page

"; + echo "

Back to login page

"; print_footer(); } } elseif (!empty($_GET['logout'])) { // Logout request submitted print_header(); echo "

You have logged out.

"; - echo "

Back to login page

"; + echo "

Back to login page

"; print_footer(); } else { // The state of the page