Resolved how to disable forgot password in login page

As a (rather ugly) workaround you could create a custom theme with your own CSS (custom.css) and add this:
Code:
#login-page .field-name a {
        display: none;
}

This would simply hide the link to the password reset page.
 
Last edited:
Back
Top