26 lines
700 B
PHP
26 lines
700 B
PHP
|
<?= $this->formTag(function(){ ?>
|
||
|
<?= $this->hiddenField("ban", "user_id") ?>
|
||
|
<table class="form">
|
||
|
<tfoot>
|
||
|
<tr>
|
||
|
<td></td>
|
||
|
<td><?= $this->submitTag($this->t('user_submit')) ?></td>
|
||
|
</tr>
|
||
|
</tfoot>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th><label for="ban_reason"><?= $this->t('user_reason') ?></label></th>
|
||
|
<td><?= $this->textArea("ban", "reason", ['size' => '40x5']) ?></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>
|
||
|
<label for="ban_duration"><?= $this->t('user_duration') ?></label>
|
||
|
</th>
|
||
|
<td><?=$this->textField("ban", "duration", ['size' => '10']) ?></td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<?php }) ?>
|
||
|
|
||
|
<?= $this->partial("footer") ?>
|