Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <%--
  2. Document : index
  3. Created on : 20/09/2017, 11:21:42
  4. Author : dskaster
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12. <title>Login</title>
  13. </head>
  14. <body>
  15. <div class="container">
  16. <form class="form-signin" action="${pageContext.servletContext.contextPath}/login" method="POST">
  17. <h2 class="form-signin-heading">Por favor, faça login.</h2>
  18.  
  19. <input class="form-control" type="text" name="login" placeholder="Usuário" required autofocus>
  20. <input class="form-control" type="password" name="senha" placeholder="Senha" required>
  21.  
  22. <button class="btn btn-lg btn-primary btn-block" type="submit">Login</button>
  23. </form>
  24. <h2 class="form-signin-heading"><a href="${pageContext.servletContext.contextPath}/usuario">Ou crie sua conta</a></h2>
  25. </div>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement