Login Form on local diffrent to QA

0
Hi guys, I have inserted a custom image on the login form . Works perfectly on local host but the minute I deploy to QA on our testing environment the image is not displyed. The login form on local and QA is completely different . checked the login.css files on local and QA and they exactly the same . Any ideas please?
asked
4 answers
2

As reply to your comment: Check your index.html in the theme folder. Does the file have the following lines somewhere between the <head> tags?

<script>
            if (!document.cookie || !document.cookie.match(/(^|;)originURI=/gi))
                document.cookie = "originURI=/login.html";
        </script>

The above should force your index.html to redirect to your desired login.html

answered
0

Cache problem? Did you try to empty the browser cache?

Regards,

Ronald

answered
0

Cookie problem? Delete the OriginURI cookie for the server url in your browser

answered
0

Login.html is only used when called (for example: www.mymendixapp.com/login.html). The login page that is showed when started with index.html can be styled as well. Use the mx-login class to add a background picture in css.

answered