Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

View File

@ -0,0 +1,102 @@
{extend name="default/base_js" /}
{block name="title"}用户注册 - {:WSTConf('CONF.mallName')}{__block__}{/block}
{block name="css"}
<link href="__STYLE__/css/login.css?v={$v}" rel="stylesheet">
<script type="text/javascript" src="__STATIC__/js/rsa.js"></script>
{/block}
{block name="header"}{/block}
{block name="main"}
<div class="wst-login-banner-regist">
<div class="wst-icon-banner">
<a href='{$Request.root.true}' title="{:WSTConf('CONF.mallName')}" >
<div class="img-banner" >
<img src="__ROOT__/{:WSTConf('CONF.mallLogo')}">
</div>
</a>
<div class="wst-login-action">
<ul class="wst-icon" style="width: 300px;margin-top: 20px;">
<li class="wst-img-icon"></li><li class="wst-remind" style="color:#333;">您好!欢迎来到{:WSTMSubstr(WSTConf('CONF.mallName'),0,13)}<a href="{:Url('home/users/login')}" onclick="WST.currentUrl();" style="color:red;">&nbsp;&nbsp;请登录</a></li>
</ul>
</div>
</div>
</div>
<input type="hidden" id="token" value='{:WSTConf("CONF.pwdModulusKey")}'/>
<div class="wst-regist-b">
<div class="wst-container">
<div class="wst-regist">
<div class="wst-regist-c">
<input type="hidden" id="nameType" class="wst_ipt nameType" value='2' autocomplete="off"/>
<form id="reg_form" method="post" autocomplete="off">
<div class="wst-regist-head">Hi欢迎来注册</div>
<table class="wst-table">
<tr class="wst-login-tr">
<td class="wst-regist-td"><font color='red'>*</font>用户名</td>
<td><input id="loginName" name="loginName" class="wst_ipt wst-regist-input" tabindex="1" maxlength="30" autocomplete="off" onpaste="return false;" style="ime-mode:disabled;" placeholder="手机号" type="text" onkeyup="javascript:WST.isChinese(this,1)" /></td>
</tr>
<tr class="wst-login-tr">
<td class="wst-regist-td"><font color='red'>*</font>密码</td>
<td><input id="loginPwd" name="loginPwd" class="wst_ipt wst-regist-input" tabindex="2" style="ime-mode:disabled;" autocomplete="off" type="password" placeholder="6-16位字符"/></td>
</tr>
<tr class="wst-login-tr">
<td class="wst-regist-td"><font color='red'>*</font>确认密码</td>
<td><input id="reUserPwd" name="reUserPwd" class="wst_ipt wst-regist-input" tabindex="3" autocomplete="off" type="password" placeholder="6-16位字符"/></td>
</tr>
<tr id="mobileCodeDiv" class="wst-login-tr">
<td class="wst-regist-td"><font color='red'>*</font>短信验证码</td>
<td>
<input maxlength="6" autocomplete="off" tabindex="6" class="wst_ipt wst-regist-codemo" name="mobileCode" style="ime-mode:disabled" id="mobileCode" type="text" data-target="#mobileCodeTips" placeholder="短信验证码"/>
<button id="timeTips" onclick="getVerifyCode();" class="wst-regist-obtain">获取短信验证码</button>
<span id="mobileCodeTips"></span>
</td>
</tr>
<tr class="wst-login-tr">
<td colspan="2" style="padding-left:180px;">
<label>
<input id="protocol" name="protocol" type="checkbox" class="wst_ipt" value="1" data-rule="checked"/>我已阅读并同意
<a href="javascript:;" style="color:#69b7b5;" id="protocolInfo" onclick="showProtocol();">《用户注册协议》</a>
</label>
</td>
</tr>
<tr style="height:80px;">
<td colspan="2" style="padding-left:260px;">
<input id="reg_butt" class="wst-regist-but" type="submit" value="注册" style="width: 180px;height:30px;"/>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
<div class="wst-footer">
<div class="wst-container">
<div class="wst-footer-hp-ck3">
<div class="links">
{php}$navs = WSTNavigations(1);{/php}
{volist name="$navs" id='vo'}
<a href="{$vo['navUrl']}" {if $vo['isOpen']==1}target="_blank"{/if}>{$vo['navTitle']}</a>
{if $i< count($navs)}&nbsp;&nbsp;|&nbsp;&nbsp;{/if}
{/volist}
</div>
<div class="copyright">
{php}
if(WSTConf('CONF.mallFooter')!=''){
echo htmlspecialchars_decode(WSTConf('CONF.mallFooter'));
}
{/php}
{php}
if(WSTConf('CONF.visitStatistics')!=''){
echo htmlspecialchars_decode(WSTConf('CONF.visitStatistics'))."<br/>";
}
{/php}
</div>
</div>
</div>
</div>
{/block}
{block name="js"}
<script type="text/javascript" src="__STATIC__/plugins/validator/jquery.validator.min.js?v={$v}"></script>
<script type='text/javascript' src='__STYLE__/js/login.js?v={$v}'></script>
<Script>$(function(){initRegist();})</Script>
{/block}