| 123456789101112131415161718192021222324 |
- <%--
- Created by IntelliJ IDEA.
- User: 33109
- Date: 2026/3/14
- Time: 16:49
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Title</title>
- </head>
- <body>
- <h1>登录页面</h1>
- ${success_msg}
- <span style="color: green">${success_msg}</span>
- <span style="color: red">${error_msg}</span>
- <form action="/one" method="post">
- 账号:<input type="text" name="username"><br>
- 密码:<input type="password" name="password"><br>
- <input type="submit" value="登录">
- </form>
- </body>
- </html>
|