java_web/webapp/login.html

28 lines
869 B
HTML
Raw Normal View History

2024-11-25 19:06:50 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login Page</title>
</head>
<body>
<form action="RedirectServlet" method="post">
<table width="298" border="0" align="center" cellpadding="2" cellspacing="1">
<tr>
<td align="right">用户名:</td>
<td align="left"><input type="text" name="username" size="15"></td>
</tr>
<tr>
<td align="right">&nbsp;&nbsp;码:</td>
<td><input type="password" name="password" size="15"></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="登录">
&nbsp;
<input type="reset" value="取消">
</td>
</tr>
</table>
</form>
</body>
</html>