Ciao a tutti,
nel form dove il cliente deve loggarsi per poter proseguire, bisogna cliccare su LOGIN con il mouse. Come posso ottenere lo stesso risultato premendo semplicemente il tasto ENTER?
Ecco il codice del form:
<form name="login" method="post" action="account.php">
<input type="hidden" name="action" value="login">
<input type="hidden" name="redirect" value="<?php echo "{$URL}"; ?>">
<table border="0px" width="100%">
<tr>
<td nowrap="nowrap"><?php echo "e-mail"; ?></td>
<td width="100%" align="right"><input type="text" name="username"></td>
</tr>
<tr>
<td nowrap="nowrap"><?php echo "password"; ?></td>
<td width="100%" align="right"><input type="password" name="password"></td>
</tr>
<tr>
<td colspan="2" align="right" class="xsmall">
<?php echo "Login"; ?>
<?php echo "|"; ?> <?php echo "Registrati"; ?>
<?php echo "|"; ?> <?php echo "Password Dimenticata?"; ?>
</td>
</tr>
</table>
</form>
Thanx![]()