How do I customize the login form?

2
I have a client-side session bug listed here, but I can implement a temporary workaround by adding custom javascript to the login page of the Mendix system. Question is, how do I customize the login page. The AppStore has custom login pages, but their documentation on how to use it is missing. So my question is, how do I customize the login page?
asked
2 answers
4

Is this what you mean?

Login page & login HTML page

answered
0

Temporary solution to this, is to alter the login.html page with the following code:

    <script type="text/javascript" src="jquery-1.5.2.min.js"></script>
    <script type="text/javascript" src="jquery.cookie.js"></script>
    <script type="text/javascript">

        if (jQuery.cookie('XASSESSIONID') != null) {
           jQuery.cookie('XASSESSIONID', null);
           location.reload(true);
         }
        else {
           console.log('Already reloaded. [just debug status]');
        }
    </script>
answered