summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_advanced_admin.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-05-12 10:45:30 -0400
committerjim-p <jimp@pfsense.org>2011-05-12 10:45:30 -0400
commit1031c9ea7655ab64a513e3b168f70d672e30a733 (patch)
treea844f571c5d2e6eeff4b6e8d909c3315717cd42d /usr/local/www/system_advanced_admin.php
parenta1bad14197056b186726180846103fa922a94df6 (diff)
downloadpfsense-1031c9ea7655ab64a513e3b168f70d672e30a733.zip
pfsense-1031c9ea7655ab64a513e3b168f70d672e30a733.tar.gz
Make autocomplete on the login form optional.
Diffstat (limited to 'usr/local/www/system_advanced_admin.php')
-rw-r--r--usr/local/www/system_advanced_admin.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/usr/local/www/system_advanced_admin.php b/usr/local/www/system_advanced_admin.php
index 9f8b2d7..601bb8e 100644
--- a/usr/local/www/system_advanced_admin.php
+++ b/usr/local/www/system_advanced_admin.php
@@ -57,6 +57,7 @@ $pconfig['disableconsolemenu'] = isset($config['system']['disableconsolemenu']);
$pconfig['noantilockout'] = isset($config['system']['webgui']['noantilockout']);
$pconfig['nodnsrebindcheck'] = isset($config['system']['webgui']['nodnsrebindcheck']);
$pconfig['nohttpreferercheck'] = isset($config['system']['webgui']['nohttpreferercheck']);
+$pconfig['noautocomplete'] = isset($config['system']['webgui']['noautocomplete']);
$pconfig['althostnames'] = $config['system']['webgui']['althostnames'];
$pconfig['enableserial'] = $config['system']['enableserial'];
$pconfig['enablesshd'] = $config['system']['enablesshd'];
@@ -152,6 +153,11 @@ if ($_POST) {
else
unset($config['system']['webgui']['nohttpreferercheck']);
+ if ($_POST['noautocomplete'] == "yes")
+ $config['system']['webgui']['noautocomplete'] = true;
+ else
+ unset($config['system']['webgui']['noautocomplete']);
+
if ($_POST['althostnames'])
$config['system']['webgui']['althostnames'] = $_POST['althostnames'];
else
@@ -322,12 +328,24 @@ function prot_change() {
<strong><?=gettext("Disable webConfigurator redirect rule"); ?></strong>
<br/>
<?php echo gettext("When this is unchecked, access to the webConfigurator " .
- "is always permitted even on port 80, regardless of the listening port configured." .
+ "is always permitted even on port 80, regardless of the listening port configured. " .
"Check this box to disable this automatically added redirect rule. ");
?>
</td>
</tr>
<tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("WebGUI Login Autocomplete"); ?></td>
+ <td width="78%" class="vtable">
+ <input name="noautocomplete" type="checkbox" id="noautocomplete" value="yes" <?php if ($pconfig['noautocomplete']) echo "checked"; ?> />
+ <strong><?=gettext("Disable webConfigurator login autocomplete"); ?></strong>
+ <br/>
+ <?php echo gettext("When this is unchecked, login credentials for the webConfigurator " .
+ "may be saved by the browser. While convenient, some security standards require this to be disabled. " .
+ "Check this box to disable autocomplete on the login form so that browsers will not prompt to save credentials (NOTE: Some browsers do not respect this option). ");
+ ?>
+ </td>
+ </tr>
+ <tr>
<td width="22%" valign="top" class="vncell"><?=gettext("WebGUI login messages"); ?></td>
<td width="78%" class="vtable">
<input name="quietlogin" type="checkbox" id="quietlogin" value="yes" <?php if ($pconfig['quietlogin']) echo "checked"; ?> />
OpenPOWER on IntegriCloud