Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2. pageEncoding="ISO-8859-1"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="ISO-8859-1">
  8. <title>Insert title here</title>
  9. </head>
  10. <body>
  11. <form action="Login" method="POST">
  12. <table>
  13. <tr>
  14. <td>Username:</td>
  15. <td><input type="text" name="username"></td>
  16. </tr>
  17.  
  18. <tr>
  19. <td>Password:</td>
  20. <td><input type="password" name="password"></td>
  21. </tr>
  22.  
  23. <tr>
  24. <td></td>
  25. <td><input type="submit" name="submit"></td>
  26. </tr>
  27.  
  28. <tr></tr>
  29.  
  30. <tr>
  31. <td></td>
  32. <td>Are you new? Register <a href="register.jsp">here</a></td>
  33. </tr>
  34. </table>
  35. </form>
  36.  
  37. <c:if test="${loginerror == 'yes' }">
  38. Invalid username and password
  39. </c:if>
  40.  
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement