HTML of the login page in Mendix 5 Layout?

0
When I activated the security in Mendix 5, I get a login page when I start my application. When I want to edit this page I can find the css in the theme.css, but I cannot find the HTML? My search led me to the included Dojo.js. If I understand it correctly, the dojo javascript framework loads the login page. However, with the minified js files that I found, I cannot easily change the login page. Can anyone help me out in the right direction to easily change this login page? One of the things I want to do is add a "register as new user" link.
asked
2 answers
0

Suggest you allow "guest" access and use the login widget as part of a portal page, that will give considerably more options compared to going with the login box.

answered
0

I use two separate pages. The "index.html" as the login page and the "index2.html" as the actual context-page after a successful login. They each have their own theming. This requires a bit of javascripting, you need to send a post request in order to grab a session and then redirect from the index.html to the index2.html.

You could also allow anonymous access, but make sure you have a separate home-page for that purpose specifically.

Let me know if you need more help and i'll try to offer as much insight as I can, this is one of those issues that has multiple solutions.

answered