Hi,
How and where do I add a Forgot Password link to the "Secure Name/Password - Form"?
I was trying to see if I could find that information in the manual.
There is something about how to do it when using b2c.... but that is not the case.
Cybersecurity
DevOps Cloud
IT Operations Cloud
Hi,
How and where do I add a Forgot Password link to the "Secure Name/Password - Form"?
I was trying to see if I could find that information in the manual.
There is something about how to do it when using b2c.... but that is not the case.
Hi Nicolai,
the info should be available in the documentation (if you are talking about integration with NetIQ SSPR) and can be done in the Identity Server settings:
https://www.netiq.com/documentation/access-manager-45-appliance/admin/data/configuring-sspr.html
Best regards,
Philipp
Hi Nicolai,
the info should be available in the documentation (if you are talking about integration with NetIQ SSPR) and can be done in the Identity Server settings:
https://www.netiq.com/documentation/access-manager-45-appliance/admin/data/configuring-sspr.html
Best regards,
Philipp
Thanks...... one could wish that would help.
I need the link for forgotten password to appear on the login form.
According to the SSPR Doc https://www.netiq.com/documentation/self-service-password-reset-47/sspr-adminguide/data/t43milg959i5.html#b14yznxn
One should
----
You can configure the Access Manager user portal page to include the Forgotten Password URL for Self Service Password Reset. On the Identity Server, add the following HTML code in the login.jsp file (/opt/novell/nids/lib/webapp/jsp/login.jsp) above the last two </body></html> tags:
<CENTER> <a href="https://intranet.company.com/sspr/public/forgottenpassword? forceAuth=TRUE&logoutURL=">intranet.company.com/AGLogout" target="_top"> Forgot Password - Self Service Password Reset</a></CENTER>
----
However, the login.jsp file, on a NAM504 contains this (no html tags)
--- CUT HERE ---
<%@ page import="com.novell.nidp.*" %>
<%
if (NIDPConstants.useLegacyUI())
{
%>
<%@ include file="login_legacy.jsp" %>
<% } else { %>
<%@ include file="login_latest.jsp" %>
<% }
--- CUT HERE ----
Modifying the "login_latest.jsp" file does not seem to work.