login.jsp 605 B

123456789101112131415161718192021222324
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: 33109
  4. Date: 2026/3/14
  5. Time: 16:49
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>Title</title>
  12. </head>
  13. <body>
  14. <h1>登录页面</h1>
  15. ${success_msg}
  16. <span style="color: green">${success_msg}</span>
  17. <span style="color: red">${error_msg}</span>
  18. <form action="/one" method="post">
  19. 账号:<input type="text" name="username"><br>
  20. 密码:<input type="password" name="password"><br>
  21. <input type="submit" value="登录">
  22. </form>
  23. </body>
  24. </html>