Advertisement
Guest User

index.jsp

a guest
May 3rd, 2010
7,541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.12 KB | None | 0 0
  1. <%--
  2.    Document   : index
  3.    Created on : 29-abr-2010, 21:26:23
  4.    Author     : Marito
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  9.   "http://www.w3.org/TR/html4/loose.dtd">
  10.  
  11. <html>
  12.     <head>
  13.         <link rel="stylesheet" type="text/css" href="css.css"/>
  14.         <script type="text/javascript" src="MD5.js"></script>
  15.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  16.         <title>P&aacute;gina Principal</title>
  17.     </head>
  18.     <body>
  19.         <div align="center" style="background-color: white">
  20.         <h2>Ingreso de Usuario</h2>
  21.         <form action="/ConectaBD/login" method="post">
  22.             Nombre de Usuario:<input type="Text" name="nombre" size="20"><br />
  23.             Contraseña: <input type="Password" name="pass" onkeyup="this.form.hash.value = MD5(this.form.pass.value)"><br />
  24.             MD5 Generado: <input type="text" name="hash" value="" style="width: 336px;" /><br />
  25.             <input type="submit" name="envio" value="Enviar">
  26.         </form>
  27.         </div>
  28.     </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement