deeplink log-in theme

1
I have got a custom theme, in which also my log-in screen is customised. However, when I use a deeplink the presented log-in screen is a standard mendix one. How can I make sure that a deeplink will also present my custom log-in screen?
asked
2 answers
2

In the resources/deeplink directory you will find two .html templates which you can modify/ style as you like, as long as you leave the template keys intact.

The indexpage constant is not for styling, but to indicate you want to use an alternative index page. That is especially useful when using some kind of single sign on.

answered
0

Don't know if this is want you want but you can set the indexPage property. (Quote documentation)

Set the IndexPage constant (new in 1.3) By default, the IndexPage constant can remain 'index.html', however in special cases, such as when you want to load a specific theme, or bypass a certain single sign on page, you can modify this constant to for example 'index3.html' or 'index-mytheme.html'

answered