How to add text on the login pop up of the CSM portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2024 06:14 AM
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 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2024 06:47 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2024 04:53 AM