aboutsummaryrefslogtreecommitdiffstats
path: root/packages/freenas/www/disks_mount_tools.php
diff options
context:
space:
mode:
authorDaniel Stefan Haischt <dsh@pfsense.org>2007-01-10 14:16:41 +0000
committerDaniel Stefan Haischt <dsh@pfsense.org>2007-01-10 14:16:41 +0000
commit97ef1e5c1c2a923a7d906b0fb519c71b60c11e86 (patch)
tree260871042b78601347959e6f4d5fc70d8daf5bb1 /packages/freenas/www/disks_mount_tools.php
parentca0c95bd660bbc2780d933f50f47de3524d7dc10 (diff)
downloadpfsense-packages-97ef1e5c1c2a923a7d906b0fb519c71b60c11e86.tar.gz
pfsense-packages-97ef1e5c1c2a923a7d906b0fb519c71b60c11e86.tar.bz2
pfsense-packages-97ef1e5c1c2a923a7d906b0fb519c71b60c11e86.zip
* various HTML related fixes.
Diffstat (limited to 'packages/freenas/www/disks_mount_tools.php')
-rw-r--r--packages/freenas/www/disks_mount_tools.php15
1 files changed, 6 insertions, 9 deletions
diff --git a/packages/freenas/www/disks_mount_tools.php b/packages/freenas/www/disks_mount_tools.php
index abd31b62..67006981 100644
--- a/packages/freenas/www/disks_mount_tools.php
+++ b/packages/freenas/www/disks_mount_tools.php
@@ -120,8 +120,7 @@ echo $pfSenseHead->getHTML();
<?php if ($input_errors) print_input_errors($input_errors); ?>
<?php if ($savemsg) print_info_box($savemsg); ?>
-<form id="iform" name="iform" action="disks_mount_tools.php" method="post">
-
+<form action="disks_mount_tools.php" method="post" name="iform" id="iform">
<div id="inputerrors"></div>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td class="tabnavtbl">
@@ -136,12 +135,11 @@ echo $pfSenseHead->getHTML();
<td>
<div id="mainarea">
<?php if ($input_errors) print_input_errors($input_errors); ?>
- <form action="disks_mount_tools.php" method="post" name="iform" id="iform">
- <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
<tr>
<td valign="top" class="vncellreq"><?= gettext("Share Name"); ?></td>
<td class="vtable">
- <select name="fullname" class="formfld" id="fullname">
+ <select name="fullname" class="formselect" id="fullname">
<?php foreach ($a_mount as $mountv): ?>
<option value="<?=$mountv['fullname'];?>"<?php if ($mountv['fullname'] == $fullname) echo "selected";?>>
<?php echo htmlspecialchars($mountv['sharename'] . " (" . gettext("Disk") . ": " . $mountv['mdisk'] . " " . gettext("Partition") . ": " . $mountv['partition'] . ")");?>
@@ -153,7 +151,7 @@ echo $pfSenseHead->getHTML();
<tr>
<td valign="top" class="vncellreq"><?= gettext("Command"); ?></td>
<td class="vtable">
- <select name="action" class="formfld" id="action">
+ <select name="action" class="formselect" id="action">
<option value="mount" <?php if ($action == "mount") echo "selected"; ?>>mount</option>
<option value="umount" <?php if ($action == "umount") echo "selected"; ?>>umount</option>
</select>
@@ -162,7 +160,7 @@ echo $pfSenseHead->getHTML();
<tr>
<td width="22%" valign="top">&nbsp;</td>
<td width="78%">
- <input name="Submit" type="submit" class="formbtn" value="<?= gettext("Send Command!"); ?>">
+ <input name="Submit" type="submit" class="formbtn" value="<?= gettext("Send Command!"); ?>" />
</td>
</tr>
<tr>
@@ -199,12 +197,11 @@ echo $pfSenseHead->getHTML();
</td>
</tr>
</table>
- </form>
</div>
</td>
</tr>
</table>
-</form>
+ </form>
<?php include("fend.inc"); ?>
<?= checkForInputErrors(); ?>
</body>