Advertisement
Guest User

Untitled

a guest
Sep 14th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.24 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2.    pageEncoding="UTF-8" import="org.zielware.*"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7.     <script type="text/javascript" src="script/mouseHighlight.js"></script>
  8.     <link rel="Stylesheet" type="text/css" href="style/style.css" />
  9.     <title>Login Page</title>
  10. </head>
  11. <body>
  12.     <form action="login" method="post">
  13.         <h1>Login Page</h1>
  14.         <br>
  15.         <br>
  16.         <table >
  17.             <tr class="mouseOut">
  18.                 <td>Login: </td>
  19.                 <td> <input class="glowing-border" type="text" name="login_field" style="width: 150px;"/> </td>
  20.             </tr>
  21.             <tr class="mouseOut">
  22.                 <td>Password: </td>
  23.                 <td> <input class="glowing-border" type="password" name="password_field" style="width: 150px;" /> </td>
  24.             </tr>
  25.         </table>
  26.         <br>
  27.         <br>
  28.         <input type="button" onclick="location.href='register.jsp';" value="Register"
  29.                 style="width: 100px; " />
  30.         <input type="submit" value="LogIn" style="width: 100px; "/>    
  31.         <br>
  32.         <%
  33.             String msg = (String) request.getAttribute("msg");
  34.             if( msg == null)
  35.                 msg = "";
  36.         %>     
  37.         <%=msg %>
  38.     </form>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement