📄 sendactivationcode.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.ActivationForm.submitbutton.disabled=true;
document.ActivationForm.submit();
}
}
function ValidateForm() {
if (isBlank(document.ActivationForm.MemberName, "请输入你的帐号")) return false;
if (isBlank(document.ActivationForm.MemberEmail, "请输入你的电子邮件地址")) return false;
if (!isEmail(document.ActivationForm.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="sendactivationcodeprocess" method="post" name="ActivationForm">
<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.ActivationForm.MemberName.focus();
//-->
</script>
<br/>
<%@ include file="footer.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -