mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<form action="<{link app='taoexlib' ctl='admin_account' act='bind'}>" method="post" id="enterpriseBind">
|
||
<table border="0" cellspan="0" colspan="0" width="40%">
|
||
<tr>
|
||
<th></th>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<th><em class="c-red">*</em> Email:</th>
|
||
<td><{input type="text" name="bindemail" id="bindemail" value="{$regEmail}" }></td>
|
||
</tr>
|
||
<tr>
|
||
<th><em class="c-red">*</em> 密码:</th>
|
||
<td><{input type="password" name="bindpassword" id="bindpassword" }></td>
|
||
</tr>
|
||
<tr>
|
||
<th> </th>
|
||
<td><{button type="button" label="登录" id="bind"}> <a href="https://account.shopex.cn/forget?" target="_blank">找回密码</a></td>
|
||
</tr>
|
||
</table>
|
||
</form>
|
||
</div>
|
||
<div style="margin-left:100px;">
|
||
提示:请使用开通系统时预留的邮箱登录,<br/>
|
||
如若遗忘可找回密码或<a href="https://account.shopex.cn/reg?" target="_blank">重新申请</a>。
|
||
</div>
|
||
|
||
<script type="text/javascript">
|
||
(function(){
|
||
var _bindform = $('enterpriseBind');
|
||
var bindbtn = $('bind');
|
||
bindbtn.addEvent('click', function(){
|
||
_bindform.fireEvent('submit',{stop:$empty});
|
||
})
|
||
})();
|
||
</script> |