diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-08-23 21:43:08 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-08-23 21:43:08 +0000 |
commit | 5bba8dfbddb02f16b87534ba307e5c0719b165e4 (patch) | |
tree | ce4a9ac659840a2572f3f7132fb88c7fc705c1aa /usr/local/www | |
parent | fce61edae2213469b3ed613e3b3b0b178b1003ca (diff) | |
download | pfsense-5bba8dfbddb02f16b87534ba307e5c0719b165e4.zip pfsense-5bba8dfbddb02f16b87534ba307e5c0719b165e4.tar.gz |
Begin reformatting IPSEC screen. Give a bit more padding, shift
over a little and turn bacgkround to grey instead of red.
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/vpn_ipsec.php | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/usr/local/www/vpn_ipsec.php b/usr/local/www/vpn_ipsec.php index 906f791..27816d7 100755 --- a/usr/local/www/vpn_ipsec.php +++ b/usr/local/www/vpn_ipsec.php @@ -156,6 +156,7 @@ include("head.inc"); <tr> <td> <div id="mainarea"> + <table border='1'> <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> <td class="vtable"> @@ -170,6 +171,16 @@ include("head.inc"); </tr> </table> <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0"> + <?php + $i = 0; + foreach ($a_phase1 as $ph1ent) { + if (isset( $ph1ent['disabled'])) { + $spans = "<span class=\"gray\">"; + $spane = "</span>"; + } + else + $spans = $spane = ""; + ?> <tr> <td class="listhdrr">Interface<br>Remote gw</td> <td class="listhdrr">P1 mode</td> @@ -186,18 +197,7 @@ include("head.inc"); </tr> </table> </td> - </tr> - - <?php - $i = 0; - foreach ($a_phase1 as $ph1ent) { - if (isset( $ph1ent['disabled'])) { - $spans = "<span class=\"gray\">"; - $spane = "</span>"; - } - else - $spans = $spane = ""; - ?> + </tr> <tr valign="top"> <td class="listlr" ondblclick="document.location='vpn_ipsec_phase1.php?id=<?=$i;?>'"> <?=$spans;?> @@ -280,8 +280,8 @@ include("head.inc"); </td> </tr> <tr> - <td class="listbg" colspan="5"> - <table width="100%" height="100%"border="0" cellspacing="0" cellpadding="0"> + <td class="list" colspan="5"> + <table class="tabcont" width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="listhdrr">Local Network</td> <td class="listhdrr">Remote Network</td> @@ -373,6 +373,7 @@ include("head.inc"); </table> </td> </tr> + <tr><td> <p/> </td></tr> <?php $i++; } |