Files
SRCMS/Application/Admin/View/Setting/index.html
Martin Zhou 3f830d2cee SRCMS·轻响应 V1.7正式版
修复
1. 前台验证码刷新无效问题
2. 前台用户在后台管理界面密码修改逻辑缺陷
3. 前台用户上传附件越权查看漏洞
新增:
1. 用户密码存储加盐
2016-12-02 12:24:27 +08:00

42 lines
1.5 KiB
HTML

<include file="Public/header" title="系统设置" />
<div id="page-wrapper">
<div class="row">
<!--<div class="col-md-6">
<a href="{:U('setting/add')}" class="btn btn-success">添加字段</a>
</div> -->
<div class="col-md-6">
<form action="{:U('setting/index')}" method="post">
<div class="form-group input-group">
<input type="text" class="form-control" name="key" placeholder="输入字段名或者描述关键词搜索">
<span class="input-group-btn">
<button class="btn btn-default" type="button"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
</div>
<table class="table table-hover table-striped">
<thead>
<tr>
<th>字段名</th>
<th>字段描述</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<foreach name="model" item="v">
<tr>
<td>{$v.key}</td>
<!-- <td>{$v.value}</td> -->
<td>{$v.description}</td>
<td><a href="{:U('setting/update?id=')}{$v.id}">编辑</a> <!--| <a href="{:U('setting/delete?id=')}{$v.id}" style="color:red;" onclick="javascript:return del('您真的确定要删除吗?\n\n删除后将不能恢复!');">删除</a>--></td>
</tr>
</foreach>
</tbody>
</table>
{$page}
</div>
<include file="Public/footer" />