Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Change label names on Local login page

MStritt
Tera Guru

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

find_real_file.png

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

1 ACCEPTED SOLUTION

Suseela Peddise
Kilo Sage

@MStritt ,

You need to update message field in UI messages in sys_ui_message table. Navigate to System UI--> Messages

Refer below screenshot

find_real_file.png

 

If I have answered your question, please mark my response as correct and/or helpful.

Thanks,

Suseela P.

View solution in original post

9 REPLIES 9

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.

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

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>

Suseela Peddise
Kilo Sage

@MStritt ,

You need to update message field in UI messages in sys_ui_message table. Navigate to System UI--> Messages

Refer below screenshot

find_real_file.png

 

If I have answered your question, please mark my response as correct and/or helpful.

Thanks,

Suseela P.

Suseela,

Thanks! That worked. I was able to find each Message key (User name / Use External login) and change the label name.