Use new designs

This commit is contained in:
André Kiste 2021-04-08 12:32:12 +12:00
parent 44fae4497b
commit 8692aabe9b
3 changed files with 19 additions and 0 deletions

View File

@ -267,6 +267,7 @@ en:
FIRSTNAME: 'First Name'
INTERFACELANG: 'Interface Language'
KEEPMESIGNEDIN: 'Remember me for {count} days'
KEEP_ME_SIGNED_IN_TOOLTIP: 'You will remain authenticated on this device for {count} days. Only use this feature if you trust the device you are using. Authenticated devices can be managed in your profile.'
LOGGEDINAS: 'You''re logged in as {name}.'
NEWPASSWORD: 'New Password'
PASSWORD: Password

View File

@ -64,6 +64,15 @@ class CMSMemberLoginForm extends MemberLoginForm
[ 'count' => RememberLoginHash::config()->uninherited('token_expiry_days') ]
)
)
->setAttribute('data-toggle', 'tooltip')
->setAttribute(
'title',
_t(
'SilverStripe\\Security\\Member.KEEP_ME_SIGNED_IN_TOOLTIP',
'You will remain authenticated on this device for {count} days. Only use this feature if you trust the device you are using. Authenticated devices can be managed in your profile.',
['count' => RememberLoginHash::config()->uninherited('token_expiry_days')]
)
)
);
}

View File

@ -159,6 +159,15 @@ class MemberLoginForm extends BaseLoginForm
[ 'count' => RememberLoginHash::config()->uninherited('token_expiry_days') ]
)
)
->setAttribute('data-toggle', 'tooltip')
->setAttribute(
'title',
_t(
'SilverStripe\\Security\\Member.KEEP_ME_SIGNED_IN_TOOLTIP',
'You will remain authenticated on this device for {count} days. Only use this feature if you trust the device you are using. Authenticated devices can be managed in your profile.',
['count' => RememberLoginHash::config()->uninherited('token_expiry_days')]
)
)
);
}