Yuvalxp8

Looks Like Actual Login Page (Using MySQL)

Apr 4th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.94 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=windows-1255" pageEncoding="windows-1255"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  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=windows-1255">
  7. <link rel="stylesheet" type="text/css" href="cssForTopBar.css">
  8. <title>Login</title>
  9. </head>
  10. <body>
  11.         <ul>
  12.                     <li><a href="forms.jsp">Home</a></li>
  13.                     <li><a href="#news">News</a></li>
  14.                     <li><a href="contactPage.jsp">Contact</a></li>
  15.                     <li><a href="aboutPage.jsp">About</a></li>
  16.         </ul>
  17.     </br>
  18.     </br>
  19.        
  20. <form id="form1" action="loginCheck.jsp" method="get">
  21.     Username: &nbsp; <input type="text" name="uname" placeholder="Username"/></br>
  22.     Password: &nbsp; <input type="password" name="pass"/></br>
  23.     </br>
  24.     <input type="submit"/>
  25.    
  26. </form>
  27. </body>
  28. </html>
Add Comment
Please, Sign In to add comment