Files
OMS/app/taoexlib/view/admin/bind.html
2025-12-28 23:13:25 +08:00

41 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
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>&nbsp;</th>
<td><{button type="button" label="登录" id="bind"}>&nbsp;&nbsp;&nbsp;&nbsp;<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>