Custom login.html not loading after upgrade from Mendix 9.24 to 10.24.4

0
My app was originally built in Mendix 9.24, where I had customized the login.html file located under theme/web/login.html. The app correctly loaded this login page before the upgrade. Recently, I upgraded the app to Mendix 10.24.4, but it now seems to ignore my login.html file. The app loads the default Mendix login screen instead of my customized version.   Steps tried: Verified that login.html is still under theme/web/ Cleaned the deployment directory  Runtime setting for Use React Client is NO Question:  How can I make Mendix 10.24.4 use my custom login.html file again? Has the login mechanism changed in Mendix 10 and if so, what’s the correct approach for customizing the login page now? Any guidance or documentation reference would be appreciated.
asked
1 answers
0

Hi Sivakumar,

 

From Mendix 10 onward the default login page is controlled by the runtime and the old login.html override under theme/web/ is no longer used automatically. The recommended approach now is to create a Login page inside Studio Pro and configure it under Security → Anonymous users or as the sign-in page for your navigation profile. If you want a fully custom HTML login, it must be implemented as a Pluggable Web Widget or handled via a custom login microflow instead of replacing login.html directly. That’s why your old file is ignored after the upgrade.

answered