Override change password page
Hi guys,
In Cache CSP application, I have enabled Password expiration days to certain days in System > Security Management > System-wide Security Parameters. When password expires for the users and they try to login the login page takes to standard cache password change page.
Is there anyway I can display my overridden page instead of standard cache password change page?
Reason to display my own page: I needed to break down the UserName, for eg: UserName into CompanyID - IBA and User ID - san.
.png)
Currently, I have overridden %CSP.PasswordChange class to CSS.CSP.ChangePassword.cls and included this in System > Security Management > Web Applications > Edit Web Application and CSPSystem user has a role that contains Read permission but I am still receiving the same standard cache password change page.
.png)
Kind Regards,
Sandeep
Comments
Look at the class %SYSTEM.CSP:
CSS>d $system.CSP.DisplayConfig()
...
CSS>w $system.CSP.GetConfig("DefaultPasswordChangePage")
%CSP.PasswordChange.cls
CSS>d $system.CSP.SetConfig("DefaultPasswordChangePage","CSS.CSP.ChangePassword.cls")
CSS>w $system.CSP.GetConfig("DefaultPasswordChangePage")
CSS.CSP.ChangePassword.clsThanks @Vitaliy Serdtsev
That worked!