summaryrefslogtreecommitdiffstats
path: root/usr/local/www/load_balancer_monitor_edit.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-10-16 15:47:06 -0400
committerScott Ullrich <sullrich@pfsense.org>2009-10-16 15:47:06 -0400
commit7889db96a66ea2e61a27d3449598621c80a3f089 (patch)
tree0b6c3a9669886652ab240dcdc5c1702e8dd483e2 /usr/local/www/load_balancer_monitor_edit.php
parent791d1c591605e18b2be8325289d4c9281f8394be (diff)
downloadpfsense-7889db96a66ea2e61a27d3449598621c80a3f089.zip
pfsense-7889db96a66ea2e61a27d3449598621c80a3f089.tar.gz
Adjust sizing of items that appear when setting the type dropdown: do not use vncell, use vtable so that it does not look so strange.
Diffstat (limited to 'usr/local/www/load_balancer_monitor_edit.php')
-rwxr-xr-xusr/local/www/load_balancer_monitor_edit.php48
1 files changed, 24 insertions, 24 deletions
diff --git a/usr/local/www/load_balancer_monitor_edit.php b/usr/local/www/load_balancer_monitor_edit.php
index 7dbaa97..05d5072 100755
--- a/usr/local/www/load_balancer_monitor_edit.php
+++ b/usr/local/www/load_balancer_monitor_edit.php
@@ -241,14 +241,14 @@ function updateType(t){
<td width="78%" class="vtable" colspan="2">
<select id="type" name="type">
<?
- foreach ($types as $key => $val) {
- if(isset($pconfig['type']) && $pconfig['type'] == $key) {
- $selected = " selected";
- } else {
- $selected = "";
- }
- echo "<option value=\"{$key}\" onclick=\"updateType('{$key}');\"{$selected}>{$val}</option>\n";
- }
+ foreach ($types as $key => $val) {
+ if(isset($pconfig['type']) && $pconfig['type'] == $key) {
+ $selected = " selected";
+ } else {
+ $selected = "";
+ }
+ echo "<option value=\"{$key}\" onclick=\"updateType('{$key}');\"{$selected}>{$val}</option>\n";
+ }
?>
</select>
</td>
@@ -262,20 +262,20 @@ function updateType(t){
<td width="78%" class="vtable" colspan="2">
<table width="100%" border="0" cellpadding="6" cellspacing="0">
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">Path</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">Path</td>
+ <td class="vtable" colspan="2">
<input name="http_options_path" type="text" <?if(isset($pconfig['options']['path'])) echo "value=\"{$pconfig['options']['path']}\"";?>size="64">
</td>
</tr>
<tr align="left">
- <td width="22%" valign="top" class="vncell">Host</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">Host</td>
+ <td class="vtable" colspan="2">
<input name="http_options_host" type="text" <?if(isset($pconfig['options']['host'])) echo "value=\"{$pconfig['options']['host']}\"";?>size="64"><br/>Hostname for Host: header if needed.
</td>
</td>
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">HTTP Code</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">HTTP Code</td>
+ <td class="vtable" colspan="2">
<?= print_rfc2616_select("http_options_code", $pconfig['options']['code']); ?>
</td>
</tr>
@@ -295,20 +295,20 @@ function updateType(t){
<td width="78%" class="vtable" colspan="2">
<table width="100%" border="0" cellpadding="6" cellspacing="0">
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">Path</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">Path</td>
+ <td class="vtable" colspan="2">
<input name="https_options_path" type="text" <?if(isset($pconfig['options']['path'])) echo "value=\"{$pconfig['options']['path']}\"";?>size="64">
</td>
</tr>
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">Host</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">Host</td>
+ <td class="vtable" colspan="2">
<input name="https_options_host" type="text" <?if(isset($pconfig['options']['host'])) echo "value=\"{$pconfig['options']['host']}\"";?>size="64"><br/>Hostname for Host: header if needed.
</td>
</td>
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">HTTP Code</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">HTTP Code</td>
+ <td class="vtable" colspan="2">
<?= print_rfc2616_select("https_options_code", $pconfig['options']['code']); ?>
</td>
</tr>
@@ -329,14 +329,14 @@ function updateType(t){
<td width="78%" class="vtable" colspan="2">
<table width="100%" border="0" cellpadding="6" cellspacing="0">
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">Send string</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">Send string</td>
+ <td class="vtable" colspan="2">
<input name="send_options_send" type="text" <?if(isset($pconfig['options']['send'])) echo "value=\"{$pconfig['options']['send']}\"";?>size="64">
</td>
</tr>
<tr align="left">
- <td width="22%" valign="top" class="vncellreq">Expect string</td>
- <td width="78%" class="vtable" colspan="2">
+ <td valign="top" align="right" class="vtable">Expect string</td>
+ <td class="vtable" colspan="2">
<input name="send_options_expect" type="text" <?if(isset($pconfig['options']['expect'])) echo "value=\"{$pconfig['options']['expect']}\"";?>size="64">
</td>
</tr>
OpenPOWER on IntegriCloud