39 lines
1.9 KiB
HTML
Executable File
39 lines
1.9 KiB
HTML
Executable File
<!--{template common/header}-->
|
|
<div class="header cl">
|
|
<div class="mz"><a href="javascript:history.back();"><i class="dm-c-left"></i></a></div>
|
|
<h2>{lang getpassword}</h2>
|
|
<div class="my"></div>
|
|
</div>
|
|
<div class="loginbox cl">
|
|
<form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid&sign=$_GET['sign']">
|
|
<input type="hidden" name="formhash" value="{FORMHASH}" />
|
|
<div class="login_from">
|
|
<div class="lgfm">
|
|
<label><em>{lang username}:</em>$member['username']</label>
|
|
<label><em>{lang new_password}:</em><input type="password" id="newpasswd1" name="newpasswd1" size="25" class="px" /></label>
|
|
<p style="height:22px;">
|
|
|
|
<i class="d" id="chk_newpasswd1">{lang register_password_tips}<!--{if $_G['setting']['pwlength']}-->, {lang register_password_length_tips1} $_G['setting']['pwlength'] {lang register_password_length_tips2}<!--{/if}--></i>
|
|
</p>
|
|
<label><em>{lang new_password_confirm}:</em><input type="password" id="newpasswd2" name="newpasswd2" size="25" class="px" /></label>
|
|
<p style="height:22px;"><i class="d" id="chk_newpasswd2"></i></p>
|
|
</div><em><i id="tip_newpasswd1" class="p_tip"></i><em><em><i id="tip_newpasswd2" class="p_tip"></i><em>
|
|
<div class="lgf minf">
|
|
<h4>{lang login_guest}</h4>
|
|
</div>
|
|
</div>
|
|
<div class="btn_login"><button type="submit" name="getpwsubmit" value="true" class="pn">{lang submit}</button></div>
|
|
</form>
|
|
<script type="text/javascript" src="{$_G['setting']['jspath']}register.js?{VERHASH}"></script>
|
|
<script type="text/javascript">
|
|
var strongpw = new Array();
|
|
<!--{if $_G['setting']['strongpw']}-->
|
|
<!--{loop $_G['setting']['strongpw'] $key $val}-->
|
|
strongpw[$key] = $val;
|
|
<!--{/loop}-->
|
|
<!--{/if}-->
|
|
var pwlength = <!--{if $_G['setting']['pwlength']}-->$_G['setting']['pwlength']<!--{else}-->0<!--{/if}-->;
|
|
checkPwdComplexity(getID('newpasswd1'), getID('newpasswd2'));
|
|
</script>
|
|
</div>
|
|
<!--{template common/footer}--> |