Thisis a bug and below workaround could be used to address it.
a.Take abackup of current/opt/novell/nids/lib/webapp/jsp/login_latest.jsp
b.Modify itas below :
Replacebelow :
<%
String err = (String)request.getAttribute(NIDPConstants.ATTR_LOGIN_ERROR);
if (err != null)
{
%>
With:
<%
String err = (String)request.getAttribute(NIDPConstants.ATTR_LOGIN_ERROR);
if (err != null)
{
if (err != null && err.startsWith(“Login failed, please tryagain”))
{
err = “Please enter your login credentials!”;
}
%>
c.The errormessage in Step b can be customized as per businessrequirements.