Файл: adultscript-2.0.3-pro/files/admin/templates/default/tools_bans_add.tpl.php
Строк: 46
<?php defined('_VALID') or die('Restricted Access!'); ?>
<div id="add-ban-div"<?php if (!$this->ban['submitted']): echo ' style="display: none;"'; endif; ?>>
<form id="add-ban-form" method="post" action="<?php echo ADMIN_URL; ?>/index.php?q=tools/bans">
<fieldset>
<legend>Ban IP</legend>
<table width="100%" border="0" cellspacing="2" cellpadding="1" class="search">
<tr>
<td>
<div class="optional">
<label for="ip" class="search">Ip</label>
<input name="ip" type="text" id="ip" class="medium" value="<?php echo e($this->ban['ip']); ?>" />
</div>
</td>
<td>
<div class="optional">
<label for="reason" class="search">Reason</label>
<input name="reason" type="text" id="reason" class="medium" value="<?php echo e($this->ban['reason']); ?>" />
</div>
</td>
<td>
<div class="optional">
<label for="expire" class="search">Expire</label>
<input name="expire" type="text" id="expire" class="medium" value="<?php echo e($this->ban['expire']); ?>" />
</div>
</td>
</tr>
<tr>
<td colspan="3">
<div style="text-align: center; margin-top: 3px;">
<input name="submit_add_ban" type="submit" class="button butDef" value=" Add " />
<input name="submit_cancel" type="submit" class="button butDef" value=" Cancel " />
</div>
</td>
</tr>
</table>
</fieldset>
</form>
</div>