📄 password_init.ftl
字号:
<#include "lib/report.tpl"/>
<#import "lib/html.tpl" as html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=${_encoding?default("GBK")}" />
<#assign navtitle = "忘记密码 - ">
<#include "/common/title.ftl">
<#include "/common/meta.ftl">
<link href="${_resPath}/lib/base.css" rel="stylesheet" type="text/css" />
</head>
<script type="text/javascript" src="${_contextPath}/ef/js/prototype.js"></script>
<script type="text/javascript" src="${_contextPath}/ef/js/base.js"></script>
<script type="text/javascript" src="${_contextPath}/ef/js/eforumad.js"></script>
<body><!-- password_init.ftl -->
<div id="wrap">
<#include "header.ftl"/>
<div id="content">
<@_report/>
<form method="post" action="${_UrlUtil.encodeURL("/login.do")}" id="passwordForm">
<input type="hidden" name="_fn" value="InitPassword">
<div id="userImportant" class="commonBox">
<table class="commonTable">
<tr class="hd1">
<td colspan="3">忘记密码</td>
</tr>
<tr class="content">
<td class="td1">
用户名 </td>
<td class="td2">
<input name="user_id" type="text" value="${user_id?default("")}" class="input1" size="32">
<span class="mustInputIcon"> * </span>
</td>
<td class="td3">
<span class="note">注意不是‘昵称’</span><@_errorField name="user_id"/>
</td>
</tr>
<tr class="content">
<td class="td1">
Email
</td>
<td class="td2">
<input name="user_email" type="text" value="${user_email?default("")}" class="input1" size="32">
<span class="mustInputIcon"> * </span>
</td>
<td class="td3">
<span class="note">您在论坛登记的邮箱地址</span><@_errorField name="user_email"/>
</td>
</tr>
<tr class="content">
<td class="td1">
安全问题
</td>
<td class="td2" colspan="1">
<select name="user_question" style="width: 203px;">
<@html.option value=user_question?default(-1) list=_CodeUtil.getCodeList("SECURITY_QUESTION") fdname="code_name" fdvalue="code_key"/>
</select>
</td>
<td class="td3">
<span class="note">如果您设置了安全提问,请在此输入正确的问题和回答</span>
</td>
</tr>
<tr class="content">
<td class="td1">
答案
</td>
<td class="td2" colspan="2">
<input name="user_answer" type="text" value="${user_answer?default("")}" class="input1" size="32"><@_errorField name="user_answer"/>
</td>
</tr>
<tr class="content">
<td class="td4" colspan="3">
<input type="button" class="middleButton" value="提交" onclick="formSubmit('passwordForm',this)">
<input type="reset" class="middleButton" value="清除" onclick="formReset('passwordForm')">
</td>
</tr>
</table>
</div><#comment>end userConfig </#comment>
</form>
</div><#comment>end content</#comment>
<#include "footer.ftl"/>
</div><#comment>end wrap</#comment>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -