I was wondering if is it possible to hide the Remember my Credentials option on Webtop login. If so, how may I achieve this?
Thanks
Hi,
Open /webapps/webtop/wdk/app.xml copy this selection
<save_credential> <!-- saved credentials functionality is turned on by default --> <enabled>true ; do it false</enabled>
<!-- Default encryption key --> <encryption_key>please specify your encryption key here</encryption_key>
<!-- Disable saved credentials functionality in the following doccbases --> <disabled_docbases> <docbase></docbase> </disabled_docbases> </save_credential>
copy it to /webapps/webtop/custom/app.xml
or change your joginex.jsp as below
<dmf:panel name='<%=Login.CONTROL_CREDENTIAL_PANEL%>' id='<%=Login.CONTROL_CREDENTIAL_PANEL%>' renderifinvisible='true'><tr class='<%=Login.CONTROL_CREDENTIAL_PANEL%>'><td height="5" colspan="3"> </td></tr><tr class='<%=Login.CONTROL_CREDENTIAL_PANEL%>'><td scope="row"></td><td></td><td><dmf:checkbox name='<%=Login.CONTROL_SAVE_CREDENTIAL%>' nlsid='MSG_SAVE_OPTION' enabled='false' visible='false'/></td></tr></dmf:panel>
Hope it helps
Regards,
Elchin
Thanks Elchin, I will try what you wrote.