Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/05/2009, 20:57
dariones
 
Fecha de Ingreso: marzo-2009
Mensajes: 16
Antigüedad: 15 años, 9 meses
Puntos: 0
Transformar "buttom" a submit

Código HTML:
<html>
<head>
<title>Contraseña sencilla 3</title>

<p align="center"><b>Contraseña sencilla 3</p><br>

</b>
</head>
<body>

<script LANGUAGE="JavaScript">

function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
if (username=="miembro1" && password=="contraseña1") { window.location="hola.html"; done=1; }
if (username=="miembro2" && password=="contraseña2") { window.location="hola.html"; done=1; }
if (username=="miembro3" && password=="contraseña3") { window.location="hola.html"; done=1; }
if (done==0) { alert("Nombre de usuario y/o contraseña no válidos"); }
}

</script>

<center>
<form name="login">
  <table width="288" border="1" cellpadding="3">
    <tr>
      <td colspan="2" width="242"><center>
      <p><font size="+2"><b>Área de miembros</b></font></p>
      </center></td>
    </tr>
    <tr>
      <td width="114"><font size="2">Nombre de usuario:</font></td>
      <td width="150"><input type="text" name="username" size="20"></td>
    </tr>
    <tr>
      <td width="114"><font size="2">Contraseña:</font></td>
      <td width="150"><input type="text" name="password" size="20"></td>
    </tr>
    <tr>
      <td colspan="2" align="center" width="242">
      <input type="button" value="Verificar" onClick="Login()"></td>
    </tr>
  </table>
</form>
</center>
<p></p>
<center>
<p>&nbsp;</p>
</center>
<p></p>
<!-- Script Size:  1.60 KB  -->

</body>

</html> 
Hola amigos...

Me podrían decir cómo quedaría el codigo puesto arriba transformandolo a submit... es que no funciona la tecla enter.
Gracias de antemano.