Hi @RutJWhalen ,
Did you able to resolve this?
@rmssara Sorry for the delay in responding, missed the notification.
Basically, our index.html file located in the F:\IFS\IFSMWS\IFST\instance\IFST\www-root folder had been modified/updated and the href was not defined, see below:
<h3>Application Access</h3>
<div class="element">
<a href="#aurena.casual#" class="linkContainer">
<img class="image" id="AurenaLink" src="Images/AurenaImage.jpg">
<h2>IFS Aurena</h2>
<p class="helpText">Main user interface for employees, providing browser based access on any device.</p>
</a>
</div>
This was resolved by adding the correct href for the option.:
<a href="/main/ifsapplications/web/" class="linkContainer">
<img class="image" id="AurenaLink" src="Images/AurenaImage.jpg">
<h2>IFS Aurena</h2>
<p class="helpText">Main user interface for employees, providing browser based access on any device.</p>
</a>
</div>