allow to set password label in self service

This commit is contained in:
Roland Gruber 2013-09-29 13:51:37 +00:00
parent c3f42c8e2d
commit f96be2a227
4 changed files with 14 additions and 0 deletions

View File

@ -5287,6 +5287,14 @@ Run slapindex to rebuild the index.
with.</entry>
</row>
<row>
<entry>Password field label</entry>
<entry>This text is placed as label for the password field on
the login page. LAM will use "Password" if you do not enter
any text.</entry>
</row>
<row>
<entry>Login caption</entry>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 110 KiB

View File

@ -217,6 +217,8 @@ $helpArray = array (
"Text" => _("This HTML code will be placed on top of all self service pages. E.g. you can use this to place your custom logo. Any HTML code is permitted.")),
"510" => array ("Headline" => _("Additional CSS links"),
"Text" => _("Here you can specify additional CSS links to change the layout of the self service pages. This is useful to adapt them to your corporate design. Please enter one link per line.")),
"511" => array ("Headline" => _("Password field label"),
"Text" => _('This text is placed as label for the password field on the login page. LAM will use "Password" if you do not enter any text.')),
"520" => array ("Headline" => _("Generate random password"),
"Text" => _("This will set a random password and display it on the screen or send it to the user via mail. Please edit your LAM server profile to setup the mail settings.")),
"550" => array ("Headline" => _("From address"),

View File

@ -322,6 +322,9 @@ class selfServiceProfile {
/** describing text for user login */
public $loginCaption;
/** label for password input */
public $passwordLabel;
/** describing text for search attribute */
public $loginAttributeText;
@ -364,6 +367,7 @@ class selfServiceProfile {
$this->additionalCSS = '';
$this->loginCaption = '<b>' . _("Welcome to LAM self service. Please enter your user name and password.") . '</b>';
$this->loginAttributeText = _('User name');
$this->passwordLabel = '';
$this->mainPageText = "<h1>LAM self service</h1>\n" . _("Here you can change your personal settings.");
$this->inputFields = array(
array('name' => _('Personal data'),