马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
login.jsp
<%--
Created by IntelliJ IDEA.
User: Chen
Date: 2023/5/9
Time: 8:44
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>
<h2>用户登入</h2>
<form action="/day05-filter-listener/LoginServlet" method="post">
用户名:<input type="text" name="username"> <br>
密码: <input type="password" name="password"> <br>
<input type="submit" value="登入">
</form>
</body>
</html>
loginServlet
<%--
Created by IntelliJ IDEA.
User: Chen
Date: 2023/5/9
Time: 8:44
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>
<h2>用户登入</h2>
<form action="/day05-filter-listener/LoginServlet" method="post">
用户名:<input type="text" name="username"> <br>
密码: <input type="password" name="password"> <br>
<input type="submit" value="登入">
</form>
</body>
</html>
welcome.jsp
<%--
Created by IntelliJ IDEA.
User: Chen
Date: 2023/5/9
Time: 8:57
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>
<h2>登入成功欢迎你${username}</h2>
</body>
</html>
|