14 lines
309 B
CSS
14 lines
309 B
CSS
/*
|
|
This module will remove the "Forgot Password" button from the login page.
|
|
This is useful if you have a third-party user management system.
|
|
This can be used as a standalone module.
|
|
*/
|
|
|
|
#btnResetPassword,
|
|
.btnForgotPassword {
|
|
display: none !important;
|
|
}
|
|
|
|
#loginPage {
|
|
max-height: 450px;
|
|
} |