System: Access: Users - add help text to disabled to explain this only applies to local users. closes https://github.com/opnsense/core/issues/7604

This commit is contained in:
Ad Schellevis 2024-07-08 20:01:37 +02:00
parent 93304298ab
commit 5d98f9fde0

View File

@ -576,9 +576,12 @@ $( document ).ready(function() {
</td>
</tr>
<tr>
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Disabled");?></td>
<td><a id="help_for_disabled" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Disabled");?></td>
<td>
<input name="disabled" type="checkbox" id="disabled" <?= $pconfig['disabled'] ? "checked=\"checked\"" : "" ?> />
<div class="hidden" data-for="help_for_disabled">
<?=gettext("Deny authentication, only applicable for local users");?>
</div>
</td>
</tr>
<tr>