Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <form method="POST" action="j_security_check">
  2. <table cellpadding="0" cellspasing="0" border="0">
  3. <tr>
  4. <td align="right">Username:&nbsp;</td>
  5. <td>
  6. <input type="text" name="j_username">
  7. </td>
  8. </tr>
  9. <tr>
  10. <td align="right">Password:&nbsp;</td>
  11. <td>
  12. <input type="password" name="j_password">
  13. </td>
  14. </tr>
  15. <tr>
  16. <td></td>
  17. <td><input type="submit" value="Login"</td>
  18. </tr>
  19. </table>
  20. </form>
  21.  
  22. <title>Login Error</title>
  23. </head>
  24. <body>
  25. There was an error logging in. Please try again.
  26. </body>
  27.  
  28. protected void doPost(HttpServletRequest request, HttpServletResponse response)
  29. throws ServletException, IOException {
  30. processRequest(request, response);
  31. response.getWriter().println("Welcome");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement