logon.jsp
来自「hibernate项目开发宝典该书籍的 源码」· JSP 代码 · 共 47 行
JSP
47 行
<%@ include file="/pub/jsp/common.jsp" %>
<html>
<head>
<title><bean:message key="logon"/></title>
<link rel="stylesheet" href="pub/css/common.css">
<html:javascript formName="userForm" dynamicJavascript="true"
staticJavascript="true"/>
</head>
<body>
<center>
<h1><bean:message key="logon"/></h1>
<html:form action="/logon" method="post" focus="name"
onsubmit="return validateUserForm( this );">
<html:hidden property="p" value="logon"/>
<html:errors />
<table>
<tr>
<td><bean:message key="userForm.name"/></td>
<td>
<input type="text" name="name" />
<font color="red">*</font>
</td>
</tr>
<tr>
<td><bean:message key="userForm.password"/></td>
<td>
<input type="password" name="password" />
<font color="red">*</font>
</td>
</tr>
<tr>
<td align="center" colspan="2">
<html:submit titleKey="logon.btn.logon">
<bean:message key="logon.btn.logon"/>
</html:submit>
<html:reset titleKey="btn.reset">
<bean:message key="btn.reset"/>
</html:reset>
</td>
</tr>
</table>
</html:form>
<p> <p>
<img src="images/register.jpg" width="170">
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?