footer for self service

This commit is contained in:
Roland Gruber 2019-08-08 21:10:32 +02:00
parent 02d100b5f0
commit 9781e951a6
5 changed files with 34 additions and 4 deletions

View File

@ -1,5 +1,7 @@
September 2019
- 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

View File

@ -250,15 +250,29 @@
<row>
<entry>Login caption</entry>
<entry>This text is displayed at the login page. You can input
HTML, too.</entry>
<entry>This text is displayed on the login page inside the login
mask.</entry>
</row>
<row>
<entry>Login footer</entry>
<entry>This text is displayed on the login page below the login
mask.</entry>
</row>
<row>
<entry>Main page caption</entry>
<entry>This text is displayed at self service main page where
your users change their data. You can input HTML, too.</entry>
<entry>This text is displayed on the self service main page
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>

View File

@ -319,6 +319,10 @@ $helpArray = array (
"Text" => _('Please enter your client id for the verification API.')),
"525" => array ("Headline" => _('Secret key'),
"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"),
"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"),

View File

@ -396,6 +396,9 @@ class selfServiceProfile {
/** describing text for user login */
public $loginCaption;
/** describing text for user login */
public $loginFooter;
/** label for password input */
public $passwordLabel;
@ -408,6 +411,9 @@ class selfServiceProfile {
/** describing text for self service main page */
public $mainPageText;
/** describing text for self service main page */
public $mainPageFooter;
/** input fields
* Format: array(
* <br> array(array('name' => <group name 1>, 'fields' => array(<field1>, <field2>))),

View File

@ -47,6 +47,10 @@ body.admin {
padding: 10px;
}
body.lam-selfservice {
padding: 10px;
}
.defaultBackground {
background: #F5F5F5 !important;
}