Hi All,
Anyone knows how to change the phrase "You are not allowed to sign in. Please contact your administrator." to something else in MAG, as attached?
Where is the setting on this located?
Anyone got a kb or doc link on this?
Solved! Go to Solution.
This message is a property of the Sign-in page. You list them on this menu.
Authentication - Signing in - Sign-in pages
Then open the particular page or pages and update the messages and instructions.
This message is a property of the Sign-in page. You list them on this menu.
Authentication - Signing in - Sign-in pages
Then open the particular page or pages and update the messages and instructions.
There is a separate document on creating custom sign-in pages. The basic process is to download the default pages from the SA, modify them, and then upload them back to the SA. Assuming you are using 7.1, you want to look at the j-sa-sslvpn-7.1-customsigninpages.pdf document, and look at the discussion about LoginPageErrorCode and LoginPageErrorMessage. There are some simple examples there.
Ken
I didn't think there was the ability to modify the messages though?
In the custom signin pages, you can modify the LoginPage.html to change any login error message displayed on that page. Here is a snippet from our LoginPage.html -
<% IF LoginPageErrorMessage == "Invalid username or password. Please re-enter your user information." %>
The credentials you entered are incorrect - please try again. If the issue persists contact your help desk.
<% ELSE %>
<% LoginPageErrorMessage %>
<% END %>
So, we change only one of the messages, and let the others be displayed unchanged.
Ken