Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
- pageEncoding="ISO-8859-1"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
- <link rel="stylesheet" type="text/css" href="cssForTopBar.css">
- <title>login Check</title>
- </head>
- <body id="center">
- <h1>
- <c:if test="${param.pass=='123456'}">
- Successfully Logged In
- </c:if>
- <c:if test="${param.pass != '123456'}">
- Username Or Password Is Incorrect.
- <br>
- <a href="target.jsp">Go Back And Try Again</a>
- </c:if>
- </h1>
- <br>
- <br>
- </body>
- </html>
Add Comment
Please, Sign In to add comment