Hi,
i currently played around with redirecting user to an external website after they have logged in.
Using the string
<input type="hidden" name="dst" value="http://www.thinkblue-island.de/">
it works within a landing page with username and password authentication but as soon as i put it into one with trialuser the redirect doesn't ahppen and I end up in the status.html.
Has anyone a clue as to why this is happening?
$(if trial == 'yes')
<form class="form-signin toggleme de" name="sendin" action="$(link-login-only)?dst=$(link-orig-esc)&username=T-$(mac-esc)" method="post">
<h4 class="form-signin-heading">Test</h4>
<br><br/>
<button class="btn btn-large btn-primary" type="submit">Bestätigen</button>
<input type="hidden" name="dst" value="http://www.xxxxxx.xxx/">
</form>
<form class="form-signin toggleme en" name="sendin" action="$(link-login-only)?dst=$(link-orig-esc)&username=T-$(mac-esc)" method="post">
<h4 class="form-signin-heading">Test</h4>
<br><br/>
<button class="btn btn-large btn-primary" type="submit">Accept</button>
<input type="hidden" name="dst" value="http://www.xxxxxx.xxx/">
</form>
$(endif)
Best regards