Código PHP:
Ver original
<html> <head> <script type="text/javascript" src="../jquery-1.7.2.js" ></script> <title>..:MOVIMIENTOS DE SOPORTE:.. </title> </head> <body> <script> alert("hola"); $("#contrasena").keypress(function(e){ if(e.keyCode==13){ alert("hola"); verifica(); } }); function verifica(){ if ($("#usuario").val() == "felipe"&& $("#contrasena").val() == "felipe"){ alert("usuario correcto"); } else{ alert("usuario incorrecto"); }; }; </script> <div id="cajon" style="padding: 19px; margin: 411px; margin-top:177px; border: 1px solid #B4CADE; background-color:#E6EAED"> <table> <tr> <label style="float:left " class="labels_grandes">NOMBRE DE USUARIO:<input style=" margin-left: 30px; " id="usuario" type="text" /></label> </tr> <br> <br> <tr> <label style="float:left" class="labels_grandes">CONTRASEÑA: <input style=" margin-left: 86px; " id="Contrasena" type="password" /></label> </tr> <br> <br> <tr> <div class="hhha_btn_blue" style="float:right; margin-left:100px; margin-right: 250px;"> <a id="boton_buscar_usu" type="buton" style="cursor: pointer" class="hhha_link" onclick="veirifica();" style="background-color: rgb(94, 118, 168); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(142, 161, 199); ">Ingresar</a> </tr> </div> <div style="clear:both"></div> </table> </div> </body> </html>
si alguien me puede ayudar gracias