summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/templates/part.wizard-server.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/templates/part.wizard-server.php')
-rw-r--r--apps/user_ldap/templates/part.wizard-server.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/user_ldap/templates/part.wizard-server.php b/apps/user_ldap/templates/part.wizard-server.php
index ff8630c62cd..afc8f55f94c 100644
--- a/apps/user_ldap/templates/part.wizard-server.php
+++ b/apps/user_ldap/templates/part.wizard-server.php
@@ -13,15 +13,27 @@
?>
</select>
<button type="button" id="ldap_action_add_configuration"
+ aria-describedby="ldap_action_add_configuration_instructions"
name="ldap_action_add_configuration" class="icon-add icon-default-style"
title="<?php p($l->t('Add a new configuration'));?>">&nbsp;</button>
+ <p class="hidden-visually" id="ldap_action_add_configuration_instructions">
+ <?php p($l->t('Add a new configuration'));?>
+ </p>
<button type="button" id="ldap_action_copy_configuration"
name="ldap_action_copy_configuration"
+ aria-describedby="ldap_action_copy_configuration_instructions"
class="ldapIconCopy icon-default-style"
title="<?php p($l->t('Copy current configuration into new directory binding'));?>">&nbsp;</button>
+ <p class="hidden-visually" id="ldap_action_copy_configuration_instructions">
+ <?php p($l->t('Copy current configuration into new directory binding'));?>
+ </p>
<button type="button" id="ldap_action_delete_configuration"
+ aria-describedby="ldap_action_delete_configuration_instructions"
name="ldap_action_delete_configuration" class="icon-delete icon-default-style"
title="<?php p($l->t('Delete the current configuration'));?>">&nbsp;</button>
+ <p class="hidden-visually" id="ldap_action_delete_configuration_instructions">
+ <?php p($l->t('Delete the current configuration'));?>
+ </p>
</p>
<div class="hostPortCombinator">
@@ -30,9 +42,13 @@
<div class="table">
<input type="text" class="host" id="ldap_host"
name="ldap_host"
+ aria-describedby="ldap_host_instructions"
placeholder="<?php p($l->t('Host'));?>"
title="<?php p($l->t('You can omit the protocol, unless you require SSL. If so, start with ldaps://'));?>"
/>
+ <p class="hidden-visually" id="ldap_host_instructions">
+ <?php p($l->t('You can omit the protocol, unless you require SSL. If so, start with ldaps://'));?>
+ </p>
<span class="hostPortCombinatorSpan">
<input type="number" id="ldap_port" name="ldap_port"
placeholder="<?php p($l->t('Port'));?>" />
@@ -47,17 +63,25 @@
<div class="tablerow">
<input type="text" id="ldap_dn" name="ldap_dn"
class="tablecell"
+ aria-describedby="ldap_dn_instructions"
placeholder="<?php p($l->t('User DN'));?>" autocomplete="off"
title="<?php p($l->t('The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.'));?>"
/>
+ <p class="hidden-visually" id="ldap_dn_instructions">
+ <?php p($l->t('The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.'));?>
+ </p>
</div>
<div class="tablerow">
<input type="password" id="ldap_agent_password"
class="tablecell" name="ldap_agent_password"
+ aria-describedby="ldap_agent_password_instructions"
placeholder="<?php p($l->t('Password'));?>" autocomplete="off"
title="<?php p($l->t('For anonymous access, leave DN and Password empty.'));?>"
/>
+ <p class="hidden-visually" id="ldap_agent_password_instructions">
+ <?php p($l->t('For anonymous access, leave DN and Password empty.'));?>
+ </p>
<button class="ldapSaveAgentCredentials" name="ldapSaveAgentCredentials" type="button">
<?php p($l->t('Save Credentials'));?>
</button>
@@ -67,9 +91,13 @@
<div class="tablerow">
<textarea id="ldap_base" name="ldap_base"
class="tablecell"
+ aria-describedby="ldap_base_instructions"
placeholder="<?php p($l->t('One Base DN per line'));?>"
title="<?php p($l->t('You can specify Base DN for users and groups in the Advanced tab'));?>">
</textarea>
+ <p class="hidden-visually" id="ldap_base_instructions">
+ <?php p($l->t('You can specify Base DN for users and groups in the Advanced tab'));?>
+ </p>
<button class="ldapDetectBase" name="ldapDetectBase" type="button">
<?php p($l->t('Detect Base DN'));?>
</button>
@@ -81,8 +109,12 @@
<div class="tablerow left">
<input type="checkbox" id="ldap_experienced_admin" value="1"
name="ldap_experienced_admin" class="tablecell"
+ aria-describedby="ldap_experienced_admin_instructions"
title="<?php p($l->t('Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge.'));?>"
/>
+ <p class="hidden-visually" id="ldap_experienced_admin_instructions">
+ <?php p($l->t('Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge.'));?>
+ </p>
<label for="ldap_experienced_admin" class="tablecell">
<?php p($l->t('Manually enter LDAP filters (recommended for large directories)'));?>
</label>