登录页面

<%@page contentType="text/html" pageEncoding="UTF-8" %>
<html>
</head><title>用户登录页面</title></head>

<body>
<form action="2.jsp" method="post">
<table>
<tr><td>用户</td><td><input type="text"name="user"></td></tr>
<tr><td>密码</td><td><input type="password"name="password"></td></tr>
<tr align="center">
<td colspan="2">
<input type="submit"value="登 录">&nbsp;&nbsp;&nbsp;
<input type="reset"value="取 消 ">
</td>
</tr>
</table>
</form>
</body>
</html>

原文地址:https://www.cnblogs.com/Anei/p/7704707.html