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)
This commit is contained in:
Marcus Hill 2023-11-07 21:18:46 +00:00
parent afc040bfe6
commit 51ec92c72e
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}
}