* adjust for check password.
This commit is contained in:
@@ -13,16 +13,11 @@
|
||||
<?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>
|
||||
<li><?php common::printLink('admin', 'safe', '', $lang->admin->safe->set);?></li>
|
||||
<li class='active'><?php common::printLink('admin', 'checkWeak', '', $lang->admin->safe->checkWeak);?></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='container mw-800px'>
|
||||
<div id="titlebar">
|
||||
<div class="heading">
|
||||
<strong><?php echo $lang->admin->safe->weakUser?></strong>
|
||||
<?php echo html::a(inlink('safe'), $lang->goback, '', "class=''")?>
|
||||
</div>
|
||||
</div>
|
||||
<table class='table table-condensed table-hover table-striped table-fixed'>
|
||||
<thead>
|
||||
<th class='w-id'><?php echo $lang->idAB;?></th>
|
||||
@@ -30,18 +25,20 @@
|
||||
<th><?php echo $lang->user->account;?></th>
|
||||
<th><?php echo $lang->user->phone;?></th>
|
||||
<th><?php echo $lang->user->mobile;?></th>
|
||||
<th><?php echo $lang->user->birthday;?></th>
|
||||
<th><?php echo $lang->user->birthyear;?></th>
|
||||
<th><?php echo $lang->admin->safe->reason;?></th>
|
||||
<th class='w-50px'><?php echo $lang->actions;?></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tbody class='text-center'>
|
||||
<?php foreach($weakUsers as $user):?>
|
||||
<tr>
|
||||
<td><?php echo $user->id?></td>
|
||||
<td><?php echo $user->realname?></td>
|
||||
<td><?php echo $user->account?></td>
|
||||
<td class='text-right'><?php echo $user->id?></td>
|
||||
<td class='text-left'><?php echo $user->realname?></td>
|
||||
<td class='text-left'><?php echo $user->account?></td>
|
||||
<td><?php echo $user->phone?></td>
|
||||
<td><?php echo $user->mobile?></td>
|
||||
<td><?php echo $user->birthday?></td>
|
||||
<td><?php echo $lang->admin->safe->reasonList[$user->weakReason];?></td>
|
||||
<td><?php common::printIcon('user', 'edit', "userID=$user->id", '', 'list');?></td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
|
||||
Reference in New Issue
Block a user