footer for self service
This commit is contained in:
parent
02d100b5f0
commit
9781e951a6
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"),
|
||||
|
|
|
@ -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>))),
|
||||
|
|
|
@ -47,6 +47,10 @@ body.admin {
|
|||
padding: 10px;
|
||||
}
|
||||
|
||||
body.lam-selfservice {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.defaultBackground {
|
||||
background: #F5F5F5 !important;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue