summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/services_captiveportal.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2017-01-25 12:51:17 +0545
committerPhil Davis <phil.davis@inf.org>2017-01-25 12:51:17 +0545
commitc06865be6de6b164d06ee9bb1768dfe6829d783c (patch)
tree48445ea52e7b8092d442230f07f25d7a9eeced17 /src/usr/local/www/services_captiveportal.php
parent47f2a4b9eb22ea6f1f6baad83e3786ecb53c5394 (diff)
downloadpfsense-c06865be6de6b164d06ee9bb1768dfe6829d783c.zip
pfsense-c06865be6de6b164d06ee9bb1768dfe6829d783c.tar.gz
Required fields for Captive Portal
Diffstat (limited to 'src/usr/local/www/services_captiveportal.php')
-rw-r--r--src/usr/local/www/services_captiveportal.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/services_captiveportal.php b/src/usr/local/www/services_captiveportal.php
index 912e3d0..1ebc97a 100644
--- a/src/usr/local/www/services_captiveportal.php
+++ b/src/usr/local/www/services_captiveportal.php
@@ -536,7 +536,7 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Select(
'cinterface',
- 'Interfaces',
+ '*Interfaces',
explode(",", $pconfig['cinterface']),
get_configured_interface_with_descr(),
true
@@ -682,7 +682,7 @@ $form->add($section);
$section = new Form_Section('Authentication');
$section->addClass('Authentication');
-$group = new Form_Group('Authentication method');
+$group = new Form_Group('*Authentication method');
$group->add(new Form_Checkbox(
'auth_method',
@@ -717,7 +717,7 @@ $section->addInput(new Form_Checkbox(
$pconfig['localauth_priv']
));
-$group = new Form_Group('RADIUS protocol');
+$group = new Form_Group('*RADIUS protocol');
$group->addClass("radiusproto");
$group->add(new Form_Checkbox(
@@ -759,7 +759,7 @@ $form->add($section);
$section = new Form_Section('Primary Authentication Source');
$section->addClass('Primary');
-$group = new Form_Group('Primary RADIUS server');
+$group = new Form_Group('*Primary RADIUS server');
$group->add(new Form_IpAddress(
'radiusip',
@@ -1017,7 +1017,7 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Input(
'httpsname',
- 'HTTPS server name',
+ '*HTTPS server name',
'text',
$pconfig['httpsname']
))->setHelp('This name will be used in the form action for the HTTPS POST and should match the Common Name (CN) in the certificate ' .
@@ -1026,7 +1026,7 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Select(
'certref',
- 'SSL Certificate',
+ '*SSL Certificate',
$pconfig['certref'],
build_cert_list()
))->setHelp('If no certificates are defined, one may be defined here: ' . '<a href="system_certmanager.php">System &gt; Cert. Manager</a>');
OpenPOWER on IntegriCloud