Files
OMS/app/taoexlib/view/admin/bind.html
2026-01-04 19:08:31 +08:00

52 lines
2.1 KiB
HTML

<!--
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>