summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_edit.php
diff options
context:
space:
mode:
authorSeth Mos <seth.mos@xs4all.nl>2007-09-01 20:47:31 +0000
committerSeth Mos <seth.mos@xs4all.nl>2007-09-01 20:47:31 +0000
commitb5c78501097b57d02fa20d85e03117160bb6900a (patch)
treeb50feb66872df62ae758786a7ab3c6769c7e22a4 /usr/local/www/firewall_nat_edit.php
parentbc40d758bea5ba6be700bd83fd9a7ae643378faa (diff)
downloadpfsense-b5c78501097b57d02fa20d85e03117160bb6900a.zip
pfsense-b5c78501097b57d02fa20d85e03117160bb6900a.tar.gz
Fixing css layout
Diffstat (limited to 'usr/local/www/firewall_nat_edit.php')
-rwxr-xr-xusr/local/www/firewall_nat_edit.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr/local/www/firewall_nat_edit.php b/usr/local/www/firewall_nat_edit.php
index 7508768..a10a765 100755
--- a/usr/local/www/firewall_nat_edit.php
+++ b/usr/local/www/firewall_nat_edit.php
@@ -270,7 +270,7 @@ include("fbegin.inc"); ?>
<tr>
<td width="22%" valign="top" class="vncellreq">Interface</td>
<td width="78%" class="vtable">
- <select name="interface" class="formfld">
+ <select name="interface" class="formselect">
<?php
$interfaces = array('wan' => 'WAN', 'lan' => 'LAN', 'pptp' => 'PPTP', 'pppoe' => 'PPPOE');
for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) {
@@ -288,7 +288,7 @@ include("fbegin.inc"); ?>
<tr>
<td width="22%" valign="top" class="vncellreq">External address</td>
<td width="78%" class="vtable">
- <select name="extaddr" class="formfld">
+ <select name="extaddr" class="formselect">
<option value="" <?php if (!$pconfig['extaddr']) echo "selected"; ?>>Interface address</option>
<?php if (is_array($config['virtualip']['vip'])):
foreach ($config['virtualip']['vip'] as $sn): ?>
@@ -305,7 +305,7 @@ include("fbegin.inc"); ?>
<tr>
<td width="22%" valign="top" class="vncellreq">Protocol</td>
<td width="78%" class="vtable">
- <select name="proto" class="formfld" onChange="proto_change(); check_for_aliases();">
+ <select name="proto" class="formselect" onChange="proto_change(); check_for_aliases();">
<?php $protocols = explode(" ", "TCP UDP TCP/UDP GRE ESP"); foreach ($protocols as $proto): ?>
<option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected"; ?>><?=htmlspecialchars($proto);?></option>
<?php endforeach; ?>
@@ -320,7 +320,7 @@ include("fbegin.inc"); ?>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>from:&nbsp;&nbsp;</td>
- <td><select name="beginport" class="formfld" onChange="ext_rep_change(); ext_change(); check_for_aliases();">
+ <td><select name="beginport" class="formselect" onChange="ext_rep_change(); ext_change(); check_for_aliases();">
<option value="">(other)</option>
<?php $bfound = 0; foreach ($wkports as $wkport => $wkportdesc): ?>
<option value="<?=$wkport;?>" <?php if ($wkport == $pconfig['beginport']) {
@@ -334,7 +334,7 @@ include("fbegin.inc"); ?>
</tr>
<tr>
<td>to:</td>
- <td><select name="endport" class="formfld" onChange="ext_change(); check_for_aliases();">
+ <td><select name="endport" class="formselect" onChange="ext_change(); check_for_aliases();">
<option value="">(other)</option>
<?php $bfound = 0; foreach ($wkports as $wkport => $wkportdesc): ?>
<option value="<?=$wkport;?>" <?php if ($wkport == $pconfig['endport']) {
@@ -363,7 +363,7 @@ include("fbegin.inc"); ?>
<tr>
<td width="22%" valign="top" class="vncellreq">Local port</td>
<td width="78%" class="vtable">
- <select name="localbeginport" class="formfld" onChange="ext_change();check_for_aliases();">
+ <select name="localbeginport" class="formselect" onChange="ext_change();check_for_aliases();">
<option value="">(other)</option>
<?php $bfound = 0; foreach ($wkports as $wkport => $wkportdesc): ?>
<option value="<?=$wkport;?>" <?php if ($wkport == $pconfig['localbeginport']) {
@@ -384,7 +384,7 @@ include("fbegin.inc"); ?>
<tr>
<td width="22%" valign="top" class="vncell">Description</td>
<td width="78%" class="vtable">
- <input name="descr" type="text" class="formfld" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>">
+ <input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>">
<br> <span class="vexpl">You may enter a description here
for your reference (not parsed).</span></td>
</tr>
OpenPOWER on IntegriCloud