Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/04/2008, 09:59
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Re: Contraseñas identicas y delimitacion de caracteres

Hola T4ke0veR

Prueba este ejemplo:

Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
validar(frm) {
  if (
frm.c1.value != frm.c2.value) {
    
alert ('No coinciden');
    return 
false;
  }
  
lon frm.c1.value.length;
  if (
lon<|| lon>16) {
    
alert('Longitud incorrecta');
    return 
false;
  } 
}
</script>
</head>
<body>
<form onsubmit = "return validar(this)">
<input type="text" name="c1" />
<input type="text" name="c2" />
<input type="submit" />
</form>
</body>
</html> 
Saludos,