Files
OMS/app/ome/view/admin/data/logi.html
2025-12-28 23:13:25 +08:00

28 lines
1.1 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.
-->
<h5 class="head-title">清除数据</h5>
<div class="division">
只有超级管理员有此权限!
</div>
<div class="table-action">
<form method="post" action="index.php?app=ome&ctl=admin_data_clear&act=logi" id="submit_form">
<div>
<table>
<tr><td align="left" style="width: 150px">请输入超级管理员名称:</td><td align="left"><input type="text" name="name" vtype="required" value="<{$user}>" /></td></tr>
<tr><td align="left">请输入超级管理员密码:</td><td align="left"><input type="password" name="pwd" vtype="required" /></td></tr>
</table>
</div>
<div align="left" style="margin-left: 130px;margin-top: 30px"><{button class="btn-primary" label="提交" id="submit_btn" onclick='pre_submit()'}></div>
</form>
</div>
<script type="text/javascript">
function pre_submit(){
if(confirm('确认清除系统数据?')){
$('submit_form').fireEvent('submit',{stop:$empty});
}
}
</script>