1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
vesta/web/templates/admin/add_firewall.html

119 lines
5.8 KiB
HTML
Raw Permalink Normal View History

2015-05-29 02:07:55 +03:00
<div class="l-center">
<div class="l-sort clearfix">
<div class="l-sort-toolbar clearfix float-left">
<span class="title"><b><?=__('Adding Firewall Rule')?></b></span>
<?php
if (!empty($_SESSION['error_msg'])) {
2015-06-03 02:31:03 +03:00
echo "<span class=\"vst-error\"> → ".htmlentities($_SESSION['error_msg'])."</span>";
2015-05-29 02:07:55 +03:00
} else {
if (!empty($_SESSION['ok_msg'])) {
echo "<span class=\"vst-ok\"> → ".$_SESSION['ok_msg']."</span>";
}
}
?>
2014-09-17 00:35:24 +03:00
</div>
2015-05-29 02:07:55 +03:00
</div>
</div>
<div class="l-separator"></div>
<!-- /.l-separator -->
<div class="l-center">
<?php
$back = $_SESSION['back'];
if (empty($back)) {
$back = "location.href='/list/firewall/'";
} else {
$back = "location.href='".$back."'";
}
?>
2014-09-17 00:35:24 +03:00
<form id="vstobjects" name="v_add_ip" method="post">
2015-05-29 02:07:55 +03:00
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
2015-07-01 01:31:06 +03:00
<input type="hidden" name="ok" value="Add" />
2014-09-17 00:35:24 +03:00
<table class="data mode-add">
2014-09-17 00:35:24 +03:00
<tr class="data-add">
<td class="data-dotted">
<table class="data-col1">
<tr><td></td></tr>
</table>
</td>
<td class="data-dotted">
<table class="data-col2" width="600px">
<tr>
<td class="vst-text step-top">
<?php print __('Action') ?>
2014-09-17 00:35:24 +03:00
</td>
</tr>
<tr>
<td>
<select class="vst-list" name="v_action">
<option value="DROP" <?php if ((!empty($v_action)) && ( $v_action == "'DROP'" )) echo 'selected'?>><?=__('DROP')?></option>
<option value="ACCEPT" <?php if ((!empty($v_action)) && ( $v_action == "'ACCEPT'" )) echo 'selected'?>><?=__('ACCEPT')?></option>
2014-09-17 00:35:24 +03:00
</select>
</td>
</tr>
<tr>
<td class="vst-text input-label">
<?php print __('Protocol') ?>
2014-09-17 00:35:24 +03:00
</td>
</tr>
<tr>
<td>
<select class="vst-list" name="v_protocol">
<option value="TCP" <?php if ((!empty($v_protocol)) && ( $v_protocol == "'TCP'" )) echo 'selected'?>><?=__('TCP')?></option>
<option value="UDP" <?php if ((!empty($v_protocol)) && ( $v_protocol == "'UDP'" )) echo 'selected'?>><?=__('UDP')?></option>
<option value="ICMP" <?php if ((!empty($v_protocol)) && ( $v_protocol == "'ICMP'" )) echo 'selected'?>><?=__('ICMP')?></option>
2014-09-17 00:35:24 +03:00
</select>
</td>
</tr>
<tr>
<td class="vst-text input-label">
<?php print __('Port');?> <span class="optional">(<?php print __('ranges are acceptable');?>)</span>
</td>
</tr>
<tr>
<td>
2016-11-22 07:05:19 -05:00
<input type="text" size="20" class="vst-input" name="v_port" value="<?=htmlentities(trim($v_port, "'"))?>">
2014-09-17 00:35:24 +03:00
</td>
</tr>
<tr>
<td class="vst-text input-label">
<?php print __('IP address');?> <span class="optional">(<?php print __('CIDR format is supported');?>)</span>
2014-09-17 00:35:24 +03:00
</td>
</tr>
<tr>
<td>
2016-11-22 07:05:19 -05:00
<input type="text" size="20" class="vst-input" name="v_ip" value="<?=htmlentities(trim($v_ip, "'"))?>">
2014-09-17 00:35:24 +03:00
</td>
</tr>
<tr>
<td class="vst-text input-label">
<?php print __('Comment');?> <span class="optional">(<?php print __('optional');?>)</span>
</td>
</tr>
<tr>
<td>
2016-11-22 07:05:19 -05:00
<input type="text" size="20" class="vst-input" name="v_comment" maxlength="255" value="<?=htmlentities(trim($v_comment, "'"))?>">
2014-09-17 00:35:24 +03:00
</td>
</tr>
</table>
<table class="data-col2">
<tr>
<td class="step-top" width="116px">
2016-11-22 07:05:19 -05:00
<input type="submit" name="ok" value="<?=__('Add')?>" class="button">
2014-09-17 00:35:24 +03:00
</td>
<td class="step-top">
2016-11-22 07:05:19 -05:00
<input type="button" class="button cancel" value="<?=__('Back')?>" onclick="<?=$back?>">
2014-09-17 00:35:24 +03:00
</td>
</tr>
</table>
</td>
</tr>
</table>
</from>
2015-07-01 01:31:06 +03:00
2016-07-06 13:53:03 +03:00
</div>