Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  3.   "http://www.w3.org/TR/html4/loose.dtd">
  4.  
  5. <html>
  6.     <head>
  7.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  8.         <title>ProyHolaUsuarioServlet</title>
  9.     </head>
  10.     <body>
  11.        
  12.         <h2>Hello User Aplications</h2>
  13.  
  14.         <form action="<%=request.getContextPath()%>/HolaUsuarioServlet" method="post">
  15.             Usuario: <input type="text" name="usuario" value="" size="15" />
  16.             ContraseƱa: <input type="password" name="password" value="" size="15" />
  17.  
  18.             <input type="submit" value="Enviar" name="botonEnviar" />
  19.             <input type="reset" value="Limpiar" name="botonLimpiar" />
  20.         </form>
  21.     </body>
  22. </html>