From 51ec92c72e426656257c45a9e02df1ceec12c6de Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Tue, 7 Nov 2023 21:18:46 +0000 Subject: [PATCH] AAD SSO - Wording Slight change to the error wording when a user doesn't exist in ITFlow as a contact / has the wrong auth method set (blank/local rather than Azure) --- portal/login_microsoft.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal/login_microsoft.php b/portal/login_microsoft.php index 0428da25..b3d32273 100644 --- a/portal/login_microsoft.php +++ b/portal/login_microsoft.php @@ -110,7 +110,7 @@ if (isset($_POST['code']) && $_POST['state'] == session_id()) { header("Location: index.php"); } else { - $_SESSION['login_message'] = 'Something went wrong with login. Ensure you are setup for SSO.'; + $_SESSION['login_message'] = 'Something went wrong with logging you in: Your account is not configured for Azure SSO. Please ensure you are setup in ITFlow as a contact and have Azure SSO configured.'; header("Location: index.php"); } }