Remove forgot password button ?
Last Post 04/01/2011 3:12 PM by Adrian. 2 Replies.
Author Messages
Adrian
Nuker
Nuker
Posts:13


--
03/30/2011 4:16 PM  
Hello I am using 05.06.01 DNN does anyone know how to remove the forgot password button from the login. I have read its located at \DesktopModules\AuthenticationServices\ActiveDirectory and
\DesktopModules\AuthenticationServices\DNN in the Login.ascx file but can not find exactly where to put the visible="false". I have read the suggestion given on the DNN forum but This has changed between versions.
http://www.dotnetnuke.com/Resources...fault.aspx
Joseph Craig
DNN MVP
Posts:11667


--
03/30/2011 6:00 PM  
Rather than editing the source, do this: Look at the page source of any page that contains the login control and find the Id of the td element that contains the Forgot Password link. Then, using that Id, add a CSS style to portal.css (which you can edit from the Site Settings page). It should look something like this:

#dnn_ctr1003_Login_tdPassword{display:none;}

That will suppress displaying the link.

Joe Craig, Patapsco Research Group
Complete DNN Support
Adrian
Nuker
Nuker
Posts:13


--
04/01/2011 3:12 PM  
Joseph,
This solution worked great. I was even able to apply it on other places. Thank you.


---