What file in upgrade safe manner for login screen?

Hello,
i’m customizing the login page and i’ve found the involved files which are:

  • modules/Users/login.css
  • themes/SuiteP/tpls/login.tpl

Now i would like to apply it in upgrade safe way copying:

  • modules/Users/login.css in custom/modules/Users/login.css
  • themes/SuiteP/tpls/login.tpl in custom/themes/SuiteP/tpls/login.tpl

But login.tpl has been correctly applied while login.css not.

Am i using the right path and files or i need to check different ones?

Regards

It looks like it doesn’t check for a custom version of login.css in code. You would need to move Login.php to custom and then modify the path in that file.

1 Like

Thanks…it works.

It needs also to adjust teh following with correct path:

// RECAPTCHA
require_once DIR.’…/…/…/…/include/utils/recaptcha_utils.php’;

Thanks again