Guest User

Untitled

a guest
Nov 14th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  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=UTF-8">
  7. <title>Bem vindo</title>
  8. </head>
  9. <body>
  10.  
  11. <%
  12. if ((session.getAttribute("login").equals(null)) || (session.getAttribute("login").equals(""))) {
  13. %>
  14. Você não esta logado. <a href="index.jsp">Por favor, entre com a sua conta.</a>
  15. <%
  16. } else {
  17. %>
  18. Seja bem vindo,
  19. <%=session.getAttribute("login")%>
  20. <center>
  21. <a href="http://localhost:8080/Atividade07/listUsers">Listar -
  22. Servlet</a><br> <a href="listar.jsp">Listar - JSP</a><br> <a
  23. href='logout.jsp'>Log out</a>
  24. </center>
  25. <%
  26. }
  27. %>
  28. </body>
  29. </html>
  30.  
  31.  
  32. Código da página login.jsp:
  33.  
  34. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  35. pageEncoding="ISO-8859-1"%>
  36. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  37. <html>
  38. <head>
  39. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  40. <title>Login</title>
  41. </head>
  42. <body>
  43. <form action="checklogin.jsp" method="post">
  44. <center>
  45. <table border="1" width="30%" cellpadding="3">
  46. <thead>
  47. <tr>
  48. <th colspan="2">Login</th>
  49. </tr>
  50. </thead>
  51. <tbody>
  52. <tr>
  53. <td>Login</td>
  54. <td><input type="text" name="login"/></td>
  55. </tr>
  56. <tr>
  57. <td>Senha</td>
  58. <td><input type="password" name="senha"/></td>
  59. </tr>
  60. <tr>
  61. <td><input type="submit" value="Login" /></td>
  62. <td><input type="reset" value="Reset" /></td>
  63. </tr>
  64. <tr>
  65. <td colspan="2">Ainda não esta cadastrado? <a href="register.jsp">Cadastra-se</a></td>
  66. </tr>
  67. </tbody>
  68. </table>
  69. </center>
  70. </form>
  71. </body>
  72. </html>
Add Comment
Please, Sign In to add comment