
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi Guys,
I need to remove the link "Can't access or need an account?" on the Fortify login screen.
Could you please let me know what i can change to make it invisible?
I tried changing \webapps\ssc\html\login\login.html like below,
- added this line in the login.html file, but that didn't work.
<style>a[href='#!/loginhelp'] { display: none !important }</style>
I am using Fortify 19.20
Thanks,
Nitin
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
If you wanted to simply remove the link entirely you could modify it from this:
<div class="trouble" ng-if="isEmailEnabled">
<a ui-sref="request" class="">{{'label.request_access'|i18n}}</a>
</div>
to this:
<div class="trouble" ng-if="isEmailEnabled"></div>


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi Nitin,
You are definitely looking in the right direction, I also modified this link in our SSC installation
The file in question is that I modified (login.html) was located here:
<tomcat root>\webapps\ssc\html\login\views\partials\

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
WHere should i update this line into this?
<style>a[href='#!/loginhelp'] { display: none !important }</style>


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
This is the HTML snippet which renders that link, modify it to your desire
<div class="trouble" ng-if="isEmailEnabled">
<a ui-sref="request" class="">{{'label.request_access'|i18n}}</a>
</div>


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
If you wanted to simply remove the link entirely you could modify it from this:
<div class="trouble" ng-if="isEmailEnabled">
<a ui-sref="request" class="">{{'label.request_access'|i18n}}</a>
</div>
to this:
<div class="trouble" ng-if="isEmailEnabled"></div>

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Thanks much. I uncommented the middle line i.e. <a tag and restarted the tomcat service. The account creation link is gone.