diff --git a/auth/oauth_responses.py b/auth/oauth_responses.py index ee31b6e..5c2a0a9 100644 --- a/auth/oauth_responses.py +++ b/auth/oauth_responses.py @@ -26,8 +26,7 @@ def create_error_response(error_message: str, status_code: int = 400) -> HTMLRes

Authentication Error

{error_message}

-

Please ensure you grant the requested permissions. You can close this window and try again.

- +

Please ensure you grant the requested permissions. You can close this tab and try again.

""" @@ -176,9 +175,17 @@ def create_success_response(verified_user_id: Optional[str] = None) -> HTMLRespo }} @@ -189,10 +196,10 @@ def create_success_response(verified_user_id: Optional[str] = None) -> HTMLRespo You've been authenticated as {user_display}
- Your credentials have been securely saved. You can now close this window and retry your original command. + Your credentials have been securely saved. You can now close this tab and retry your original command.
- -
This window will close automatically in 10 seconds
+ +
This tab will close automatically in 10 seconds
""" @@ -215,8 +222,7 @@ def create_server_error_response(error_detail: str) -> HTMLResponse:

Authentication Processing Error

An unexpected error occurred while processing your authentication: {error_detail}

-

Please try again. You can close this window.

- +

Please try again. You can close this tab.

"""