Guest User

Untitled

a guest
Nov 23rd, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  4. <title>Insert title here</title>
  5. </head>
  6. <body>
  7. Login
  8. <form>
  9. <input type="text" name="login">
  10. <input type="password" name="password">
  11. </form>
  12. <form>
  13. <input type="submit" name="submit">
  14.  
  15. <!-- Declaração de variaveis -->
  16. <%!String logdefault = "admin";
  17. String passdefault = "admin"; %>
  18. <% String login = request.getParameter("login");
  19. String password = request.getParameter("password"); %>
  20. <!-- FIM declaração de variaveis -->
  21.  
  22. <%
  23. if(login.equals("admin") && password.equals("admin")){
  24. response.sendRedirect("index.jsp");
  25. System.out.println("deu certo");
  26. }else{
  27. System.out.println("algo deu errado");
  28. }
  29. %>
  30. </form>
  31. </body>
  32. </html>
Add Comment
Please, Sign In to add comment