39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* The safe view file of admin module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv11.html)
|
|
* @author Yidong Wang <yidong@cnezsoft.com>
|
|
* @package admin
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id='featurebar'>
|
|
<ul class='nav'>
|
|
<li class='active'><?php echo html::a($this->inlink('safe'), $lang->admin->safe->account);?></li>
|
|
</ul>
|
|
</div>
|
|
<div class='container mw-800px'>
|
|
<form method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->admin->safe->checkPwd?></th>
|
|
<td><?php echo html::select('mode', $lang->admin->safe->modeList, isset($config->safe->mode) ? $config->safe->mode : 0, "class='form-control'")?></td>
|
|
<td><?php echo $lang->admin->safe->noticeMode?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->admin->safe->weak?></th>
|
|
<td colspan='2'><?php echo html::input('weak', $config->safe->weak, "class='form-control'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td colspan='2'><?php echo html::submitButton() . html::a(inlink('checkWeak'), $lang->admin->safe->checkWeak, '', "class='btn'");?></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|