despues de hacer clic sobre un link este me carga un form el cual carga unos valores iniciales y espera ha dar clic sobre un boton
despues de dar clic sobre el link este es el form que muestro .. aqui es donde el usuario debe dar clic sobre el boton para entrar a sesion
Código PHP:
<form id="loginForm" action="[LOGIN_URL/]" method="post" enctype="application/x-www-form-urlencoded">
<div id="loginFormContainer">
<input type="hidden" name="login" id="loginField" value="login"/>
<input type="hidden" name="redirect" id="redirectField" value="[REDIRECT_URL/]"/>
<div align="center">
<input name="userName" type="hidden" id="userNameField" value="[SESSION_USUARIO/]"/>
<input name="password" type="hidden" id="passwordField" value="[SESSION_CONTRASENA/]"/>
</div>
<div align="center"><label for="channelField"></label>
<select name="channelName" id="channelField">
[CHANNEL_OPTIONS/]
</select>
</div>
<br />
<h4 align="justify">[DEFAUL_BIENVENIDA/]</h4>
<br />
<div align="center">
<input type="submit" name="submit" id="loginButton" value="[LANG]login[/LANG]"/>
</div>
</div>
</form>
gracias por la ayuda