How do you make the custom pages prompt the user for secondary authentication on a separate page? I know with non-custom pages there is an option under Sign-In Policies "Prompt the secondary credentials on the second page", but I cant seem to get my custom page to do it. I'm using this on the Junos Pulse client btw.
On the fisrt page (LoginPage.thtml) only prompt for "first" username and password.
__ <% IF prompt.promptText == 'username' %> ...
<% IF prompt.promptText == 'password' %>
...
the second page will be displayed automatically (SecondaryLoginPage.thtml)
<% IF prompt.promptText == 'Additional username' %> ...
<% IF prompt.promptText == 'Additional password' %>
...