footer for self service
This commit is contained in:
parent
02d100b5f0
commit
9781e951a6
|
@ -1,5 +1,7 @@
|
||||||
September 2019
|
September 2019
|
||||||
- Group account types can show member+owner count in list view
|
- Group account types can show member+owner count in list view
|
||||||
|
- LAM Pro:
|
||||||
|
-> New self service settings for login and main page footer
|
||||||
|
|
||||||
|
|
||||||
02.07.2019 6.8
|
02.07.2019 6.8
|
||||||
|
|
|
@ -250,15 +250,29 @@
|
||||||
<row>
|
<row>
|
||||||
<entry>Login caption</entry>
|
<entry>Login caption</entry>
|
||||||
|
|
||||||
<entry>This text is displayed at the login page. You can input
|
<entry>This text is displayed on the login page inside the login
|
||||||
HTML, too.</entry>
|
mask.</entry>
|
||||||
|
</row>
|
||||||
|
|
||||||
|
<row>
|
||||||
|
<entry>Login footer</entry>
|
||||||
|
|
||||||
|
<entry>This text is displayed on the login page below the login
|
||||||
|
mask.</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry>Main page caption</entry>
|
<entry>Main page caption</entry>
|
||||||
|
|
||||||
<entry>This text is displayed at self service main page where
|
<entry>This text is displayed on the self service main page
|
||||||
your users change their data. You can input HTML, too.</entry>
|
where your users change their data.</entry>
|
||||||
|
</row>
|
||||||
|
|
||||||
|
<row>
|
||||||
|
<entry>Main page footer</entry>
|
||||||
|
|
||||||
|
<entry>This text is displayed as footer on the self service main
|
||||||
|
page where your users change their data.</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
|
|
|
@ -319,6 +319,10 @@ $helpArray = array (
|
||||||
"Text" => _('Please enter your client id for the verification API.')),
|
"Text" => _('Please enter your client id for the verification API.')),
|
||||||
"525" => array ("Headline" => _('Secret key'),
|
"525" => array ("Headline" => _('Secret key'),
|
||||||
"Text" => _('Please enter your secret key for the verification API.')),
|
"Text" => _('Please enter your secret key for the verification API.')),
|
||||||
|
"526" => array ("Headline" => _('Login footer'),
|
||||||
|
"Text" => _('This text is displayed as footer on the self service login page.')),
|
||||||
|
"527" => array ("Headline" => _('Main page footer'),
|
||||||
|
"Text" => _('This text is displayed as footer on the self service main page.')),
|
||||||
"550" => array ("Headline" => _("From address"),
|
"550" => array ("Headline" => _("From address"),
|
||||||
"Text" => _("This email address will be set as sender address of all password mails. If empty the system default (php.ini) will be used.")),
|
"Text" => _("This email address will be set as sender address of all password mails. If empty the system default (php.ini) will be used.")),
|
||||||
"551" => array ("Headline" => _("Subject"),
|
"551" => array ("Headline" => _("Subject"),
|
||||||
|
|
|
@ -396,6 +396,9 @@ class selfServiceProfile {
|
||||||
/** describing text for user login */
|
/** describing text for user login */
|
||||||
public $loginCaption;
|
public $loginCaption;
|
||||||
|
|
||||||
|
/** describing text for user login */
|
||||||
|
public $loginFooter;
|
||||||
|
|
||||||
/** label for password input */
|
/** label for password input */
|
||||||
public $passwordLabel;
|
public $passwordLabel;
|
||||||
|
|
||||||
|
@ -408,6 +411,9 @@ class selfServiceProfile {
|
||||||
/** describing text for self service main page */
|
/** describing text for self service main page */
|
||||||
public $mainPageText;
|
public $mainPageText;
|
||||||
|
|
||||||
|
/** describing text for self service main page */
|
||||||
|
public $mainPageFooter;
|
||||||
|
|
||||||
/** input fields
|
/** input fields
|
||||||
* Format: array(
|
* Format: array(
|
||||||
* <br> array(array('name' => <group name 1>, 'fields' => array(<field1>, <field2>))),
|
* <br> array(array('name' => <group name 1>, 'fields' => array(<field1>, <field2>))),
|
||||||
|
|
|
@ -47,6 +47,10 @@ body.admin {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.lam-selfservice {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.defaultBackground {
|
.defaultBackground {
|
||||||
background: #F5F5F5 !important;
|
background: #F5F5F5 !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue