IE11 / Edge issues with login page

2
I know IE is still supported somehow in Mendix 7.23. But i get a different Loginpage on my prefered browser (chrome) then on other browser which customers use (IE and Edge). How to resolve this. Change something in scipt?  (  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> )
asked
1 answers
0

There are 2 login screens, one default and a custom.

Check whether this piece of code is in your index.html. If not, add it after the <script< dojoConfig…. </script> 

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

This should redirect you to the login.html which is the custom login

 

answered