mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-04-21 00:11:39 +08:00
85 lines
2.6 KiB
HTML
85 lines
2.6 KiB
HTML
<!--{template common/header_simple_start}-->
|
|
<style>
|
|
html,
|
|
body {
|
|
overflow: hidden;
|
|
background: #FBFBFB;
|
|
}
|
|
|
|
.form-horizontal .form-control {
|
|
min-width: 90px;
|
|
max-width: 250px;
|
|
}
|
|
textarea.form-control,select.form-control{
|
|
border-width:1px 1px 1px 1px;
|
|
}
|
|
|
|
</style>
|
|
<!--{template common/header_simple_end}-->
|
|
<!--{template common/commer_header}-->
|
|
<div class="bs-container clearfix" style="padding-top:0px;">
|
|
<div class="bs-left-container clearfix">
|
|
<!--{template left}-->
|
|
</div>
|
|
<div class="left-drager">
|
|
<div class="left-drager-op">
|
|
<div class="left-drager-sub"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="bs-main-container clearfix">
|
|
<div class="main-header clearfix">
|
|
<ul class="nav nav-pills">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="{MOD_URL}&op=verifyset">{lang members_verify}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class=" alert alert-warning " style="margin:10px;padding-left:0;font-size:85%;line-height:2">
|
|
<ul>
|
|
{lang verifyset_members_verify_text}
|
|
</ul>
|
|
</div>
|
|
<div class="main-content">
|
|
<form id="cpform" action="{MOD_URL}&op=verifyset" class="form-horizontal" method="post" name="cpform">
|
|
<input type="hidden" value="{FORMHASH}" name="formhash">
|
|
<input type="hidden" value="true" name="verifysubmit">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<th width="60">{lang enable}</th>
|
|
<th width="120">{lang authentication_code}</th>
|
|
<th>{lang members_verify_title}</th>
|
|
<th width="120">{lang edit}</th>
|
|
</thead>
|
|
<!--{eval for($i=1;$i<8;$i++){}-->
|
|
{eval $value=$_G['setting']['verify'][$i]}
|
|
<tr>
|
|
<td width="60"><input type="checkbox" class="form-check-input" name="settingnew[verify][$i][available]" <!--{if $value[available]}-->checked="checked"<!--{/if}-->value="1" /></td>
|
|
<td width="120">verify{$i}</td>
|
|
<td>
|
|
<!--{if $value[readonly]}-->
|
|
$value[title]<input type="hidden" name="settingnew[verify][$i][title]" value="$value[title]" />
|
|
<!--{else}-->
|
|
<input type="text" class="form-control" name="settingnew[verify][$i][title]" value="$value[title]">
|
|
<!--{/if}-->
|
|
<!--{if $value['icon']}-->
|
|
<img src="$value[icon]" />
|
|
<!--{/if}-->
|
|
</td>
|
|
<td width="120">
|
|
<a href="{MOD_URL}&op=verifyset&do=edit&vid=$i" class="ibtn glyphicon glyphicon-edit " title="{lang edit}"></a>
|
|
</td>
|
|
</tr>
|
|
<!--{eval }}-->
|
|
</table>
|
|
<dl>
|
|
<input class="btn btn-primary" type="submit" value="{lang save_set}" />
|
|
</dl>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var url = '{MOD_URL}';
|
|
</script>
|
|
<!--{template common/footer_simple}--> |