📄 forgotpassword.jsp
字号:
<%--
- $Author: 飞鱼
- $Revision: 1.22 $
- $Date: 2003/02/01 09:41:34 $
- http://www.hnedu.net/fiyu
--%>
<%@ page contentType="text/html;charset=utf-8" %>
<%@ page errorPage="fatalerror.jsp"%>
<%@ page import="fiyucore.util.ParamUtil" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ include file="inc_common.jsp"%>
<html >
<head>
<title><%=fiyuForumConfig.getWebName()%> - 忘记密码</title>
<%@ include file="/fiyuplugin/fiyuforum/meta.jsp"%>
<%@ include file="inc_js_myvietnamlib.jsp"%>
</head>
<link href="<%=contextPath%>/fiyuplugin/fiyuforum/css/style.css" rel="stylesheet" type="text/css">
<body leftmargin="0" topmargin="0">
<script type="text/javascript">
function SubmitForm(){
if (ValidateForm() == true ) {
document.LostPasswordForm.submitbutton.disabled=true;
document.LostPasswordForm.submit();
}
}
function ValidateForm() {
if (isBlank(document.LostPasswordForm.MemberName, "请输入你的帐号")) return false;
if (isBlank(document.LostPasswordForm.MemberEmail, "请输入你的电子邮件地址")) return false;
if (!isEmail(document.LostPasswordForm.MemberEmail, "请输入你的电子邮件地址")) return false;
return true;
}
</script>
<%@ include file="header.jsp"%>
<br/>
<table width="95%" align="center">
<tr class="nav">
<td><img src="<%=contextPath%>/fiyuplugin/fiyuforum/images/nav.gif"></td>
<td width="100%" nowrap>
<a class="nav" href="index"><%=fiyuForumConfig.getWebName()%></a> »
忘记密码
</td>
</tr>
</table>
<br/>
<form action="forgotpasswordprocess" method="post" name="LostPasswordForm">
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
<tr class="theader">
<td colspan="2">请输入你的帐号或电子邮件地址,用来取得新的密码:</td>
</tr>
<tr class="trow1">
<td width="40%">请输入你的帐号</td>
<td><input type="text" name="MemberName"></td>
</tr>
<tr class="trow2">
<td>请输入你的电子邮件地址</td>
<td><input type="text" name="MemberEmail"></td>
</tr>
<tr class="trowfinal">
<td colspan="2" align="center">
<input name="submitbutton" type="button" value="送出新的密码" onclick="javascript:SubmitForm();" class="mainoption">
</td>
</tr>
</table>
</form>
<script language="JavaScript" type="text/javascript">
<!--
document.LostPasswordForm.MemberName.focus();
//-->
</script>
<br/>
<%@ include file="footer.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -