Advertisement
ainazuu

login.jsp

Nov 18th, 2018
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2.  
  3. <!DOCTYPE html>
  4. <html style=" background-color:#ffe6f2;">
  5. <head>
  6. <title>AWESOME TO-DO LIST</title>
  7. </head>
  8. <form action="Login" method="POST" style="text-align:center; background-color:#ffe6f2;">
  9.  
  10. <div class="container" style="text-align:center; border:2px solid black; margin:20px; padding:10%;">
  11. <br>
  12.  
  13. <h1 style="margin:20px;"><b>LOGIN HERE</b></h1>
  14. <br>
  15. <label for="username" style="margin:20px;"><b>Username</b></label>
  16. <input type="text" placeholder="Enter Username" name="username" required>
  17. <br>
  18. <br>
  19. <label for="password" style="margin:21px;"><b>Password</b></label>
  20. <input type="password" placeholder="Enter Password" name="password" required>
  21. <br>
  22. <br>
  23. <button type="submit" value="Login" >LOGIN</button>
  24. <br>
  25. <br>
  26. <a>Are you new? register</a> <a href="http://localhost:8080/awesometodolistaina/register.jsp">here</a>
  27.  
  28. </div>
  29.  
  30.  
  31. </form>
  32.  
  33. <c:if test="${loginerror=='yes'}">
  34. <small>invalid username and password</small>
  35.  
  36.  
  37. </c:if>
  38.  
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement