- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 07:26 AM
I'm trying to find where I can change some of the text/labels on the Local login page. I need to update the text for 'Use external login' and 'User name'.
*.service-now.com/login.do
I was able to find the UI Page (login_locate_sso) to update some of the text/labels on our SSO login page.
*.service-now.com/login_locate_sso.do
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 08:46 AM
You need to update message field in UI messages in sys_ui_message table. Navigate to System UI--> Messages
Refer below screenshot
If I have answered your question, please mark my response as correct and/or helpful.
Thanks,
Suseela P.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 08:07 AM
Hi Sriram,
Thanks for the response. I've tried that, but it doesn't give an option to change what's already configured on the page. The External login page I'm able to update [UI Page (login_locate_sso)] gives me the actual HTML code for the page. That's what I'm looking for with our local login page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 08:23 AM
Hi MStritt,
Can you please check below UI Page.
oauth_login.
Hope this helps!
If you have any more questions, please let me know.
If I have answered your question, please mark my response as correct and helpful.
Thanks,
Sriram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 08:28 AM
Sriram,
I don't see any reference to any of the fields/text in the Local login page (screenshot above).
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<g:evaluate var="jvar_external_auth" jelly="true">
jvar_external_auth = gs.getProperty('glide.authenticate.external', false);
</g:evaluate>
<j:if test="${jvar_external_auth == true}" >
<script>
top.location.href = "./navpage.do";
</script>
</j:if>
<j:if test="${jvar_external_auth != true}" >
<j2:set var="jvar_login_url" value="oauth_login.do" />
<g:inline template="oauth_banner.xml" />
<g:inline template="oauth_login.xml" />
</j:if>
</j:jelly>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 08:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 09:03 AM
Suseela,
Thanks! That worked. I was able to find each Message key (User name / Use External login) and change the label name.