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.

How to add text on the login pop up of the CSM portal

hema sundar
Tera Contributor

Hello community , We have a requirement to add text on the login pop p of the csm portal.
How to add the text "If you are having trouble logging in please contact the support team" below the login button ?

hemasundar_0-1725369149929.png

 

 

2 REPLIES 2

Shaqeel
Mega Sage
Mega Sage

Hi @hema sundar 

 

Add a widget say "login" and edit the html and locate the section where the login button is defined.

Add the text below the button.

<button class="btn btn-primary btn-lg btn-block" ng-click="c.login()" id="login-button">
  Log in
</button>
<p class="text-center" style="margin-top: 10px;">
  If you are having trouble logging in please contact the support team.
</p>

If you need to style the text further, you can add CSS in the CSS tab of the widget. 

 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting "Accept as Solution" and " Helpful." This action benefits both the community and me.

*************************************************************************************************************

 

 

Regards

Shaqeel


***********************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting "Accept as Solution" and " Helpful." This action benefits both the community and me.

***********************************************************************************************************************





Regards

Shaqeel

hema sundar
Tera Contributor

 

hemasundar_1-1725623580691.png