document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <%--
  2.    Document   : loginpage
  3.    Created on : 2011-09-13, 18:56:11
  4.    Author     : Kamil
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8" session="true"%>
  8. <!DOCTYPE html>
  9. <html>
  10.     <head>
  11.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12.         <title>JSP Page</title>
  13.     </head>
  14.     <body>
  15.         <form name="login" action="LoginServlet" method="POST">
  16.             <fieldset
  17.                style="width: 500px;"
  18.                >
  19.                 <legend
  20.                    style="margin-bottom: 10px;"
  21.                    >Dane osoby</legend>
  22.                 <label for="pa1"
  23.                       style="display: inline-block;
  24.                       width: 150px;
  25.                       height: 18px;
  26.                       background-color:#E5F2B8;"
  27.                       >Login</label>
  28.                 <input
  29.                    type="text"
  30.                    id="pa1"
  31.                    name="login"
  32.                    size="20"
  33.                    class="formNone"
  34.                    /><br />
  35.                 <label for="pa2"
  36.                       style="display: inline-block;
  37.                       width: 150px;
  38.                       height: 18px;
  39.                       background-color:#E5F2B8;"
  40.                       >Password</label>
  41.                 <input type="password"
  42.                       id="pa2"
  43.                       name="password"
  44.                       size="20"
  45.                       class="formNone"
  46.                       /><br />
  47.                 <input type="submit" value="OK" style="text-align: right"/>
  48.                </fieldset>
  49.         </form>
  50.     </body>
  51. </html>
');