A lo dicho por zerokilled agrego, "submit" no es un método válido, si tu form no hace un submit ni define un action, preferentemente utilizá onclick como evento
Esto sería algo más limpio
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="../media/Formularios.css" type="text/css" /> <script type="text/javascript"> //<![CDATA[
function Comprobar(){
var user=document.getElementById('nombre').value;
var pass=document.getElementById('password').value;
if ((user=='2091923') && (pass=='123')){
window.location.href = 'notas.html';
}else if(user == "" || pass ==""){
alert('por favor complete los campos');
}else{
alert('clave incorrecta');
}
}
//]]>
<input type="text" name="nombre" id="nombre"/> <input type="password" name="password" id="password" /> <input type="button" onclick="Comprobar()" value="Entrar" /> <input type="reset" value="Borrar" />
Saludos