signonform.jsp

来自「相信大家不会很陌生的」· JSP 代码 · 共 45 行

JSP
45
字号
<%@ taglib uri="struts-logic" prefix="logic" %>
<%@ taglib uri="struts-bean" prefix="bean" %>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ page contentType="text/html; charset=UTF-8" %>

<jsp:include page="../common/IncludeTop.jsp" flush="true">
   <jsp:param name="title" value="登陆" />
</jsp:include>


<html:errors />

<html:form action="/account/signon.shtml" method="POST">
<input type="hidden" name="method" value="signon" />
<table align="center" border="0">
<tr>
<td colspan="2">请输入用户名和密码.
<br />&nbsp;</td>
</tr>
<tr>
<td>用户名:</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>
 <input type="submit" name="createButton" value="登陆">
</td>
</tr>
</table>
</html:form>
<center>
<html:link page="/account/newAccountForm.shtml">
注册新账号
</html:link>
</center>


<%@include file="../common/IncludeBottom.jsp"%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?