mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
Fix help message on enabled, username and password (#668)
The help message on the Freeradius User form is off for the enabled, username and password fields. Username and Password have regex mask validation patterns, but the help message was placed on the wrong field. Fixed this by moving the 'Allowed characters' text to the correct help field.
This commit is contained in:
+3
-3
@@ -3,19 +3,19 @@
|
||||
<id>user.enabled</id>
|
||||
<label>Enabled</label>
|
||||
<type>checkbox</type>
|
||||
<help>This will enable or disable the user account. Allowed characters are 0-9, a-z, A-Z, and ._-</help>
|
||||
<help>This will enable or disable the user account.</help>
|
||||
</field>
|
||||
<field>
|
||||
<id>user.username</id>
|
||||
<label>Username</label>
|
||||
<type>text</type>
|
||||
<help>Set the unique username for the user. Allowed characters are 0-9, a-z, A-Z, and ,._-!$%/()+#= with up to 128 characters.</help>
|
||||
<help>Set the unique username for the user. Allowed characters are 0-9, a-z, A-Z, and ._-</help>
|
||||
</field>
|
||||
<field>
|
||||
<id>user.password</id>
|
||||
<label>Password</label>
|
||||
<type>password</type>
|
||||
<help>Set the password for the user.</help>
|
||||
<help>Set the password for the user. Allowed characters are 0-9, a-z, A-Z, and ,._-!$%/()+#= with up to 128 characters.</help>
|
||||
</field>
|
||||
<field>
|
||||
<id>user.description</id>
|
||||
|
||||
Reference in New Issue
Block a user