|
35 | 35 | <NcTextField |
36 | 36 | :model-value="ldapConfigProxy.ldapHost" |
37 | 37 | :helper-text="t('user_ldap', 'You can omit the protocol, unless you require SSL. If so, start with ldaps://')" |
38 | | - :placeholder="t('user_ldap', 'Host')" |
| 38 | + :label="t('user_ldap', 'Host')" |
| 39 | + :placeholder="t('user_ldap', 'ldaps://localhost')" |
39 | 40 | autocomplete="off" |
40 | 41 | @change="(event) => ldapConfigProxy.ldapHost = event.target.value" /> |
41 | 42 | <div class="ldap-wizard__server__host__port"> |
42 | 43 | <NcTextField |
43 | 44 | :model-value="ldapConfigProxy.ldapPort" |
| 45 | + :label="t('user_ldap', 'Port')" |
| 46 | + :placeholder="t('user_ldap', '389')" |
44 | 47 | type="number" |
45 | 48 | autocomplete="off" |
46 | 49 | @change="(event) => ldapConfigProxy.ldapPort = event.target.value" /> |
|
53 | 56 | <div class="ldap-wizard__server__line"> |
54 | 57 | <NcTextField |
55 | 58 | v-model="localLdapAgentName" |
56 | | - :helper-text="t('user_ldap', '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.')" |
57 | | - :placeholder="t('user_ldap', 'User DN')" |
| 59 | + :helper-text="t('user_ldap', 'The DN of the client user with which the bind shall be done. For anonymous access, leave DN and Password empty.')" |
| 60 | + :label="t('user_ldap', 'User DN')" |
| 61 | + :placeholder="t('user_ldap', 'uid=agent,dc=example,dc=com')" |
58 | 62 | autocomplete="off" /> |
59 | 63 | </div> |
60 | 64 |
|
|
63 | 67 | v-model="localLdapAgentPassword" |
64 | 68 | type="password" |
65 | 69 | :helper-text="t('user_ldap', 'For anonymous access, leave DN and Password empty.')" |
66 | | - :placeholder="t('user_ldap', 'Password')" |
| 70 | + :label="t('user_ldap', 'Password')" |
67 | 71 | autocomplete="off" /> |
68 | 72 |
|
69 | 73 | <NcButton :disabled="!needsToSaveCredentials" @click="updateCredentials"> |
|
0 commit comments