Add session logout warning below password input
This commit is contained in:
parent
abc9d5154e
commit
b7d8009109
@ -317,7 +317,11 @@ export const UserEdit = props => {
|
|||||||
/>
|
/>
|
||||||
<TextInput source="id" disabled />
|
<TextInput source="id" disabled />
|
||||||
<TextInput source="displayname" />
|
<TextInput source="displayname" />
|
||||||
<PasswordInput source="password" autoComplete="new-password" />
|
<PasswordInput
|
||||||
|
source="password"
|
||||||
|
autoComplete="new-password"
|
||||||
|
helperText="resources.users.helper.password"
|
||||||
|
/>
|
||||||
<BooleanInput source="admin" />
|
<BooleanInput source="admin" />
|
||||||
<BooleanInput
|
<BooleanInput
|
||||||
source="deactivated"
|
source="deactivated"
|
||||||
|
@ -123,6 +123,7 @@ const de = {
|
|||||||
auth_provider: "Provider",
|
auth_provider: "Provider",
|
||||||
},
|
},
|
||||||
helper: {
|
helper: {
|
||||||
|
password: "Durch die Änderung des Passworts wird der Benutzer von allen Sitzungen abgemeldet.",
|
||||||
deactivate:
|
deactivate:
|
||||||
"Sie müssen ein Passwort angeben, um ein Konto wieder zu aktivieren.",
|
"Sie müssen ein Passwort angeben, um ein Konto wieder zu aktivieren.",
|
||||||
erase: "DSGVO konformes Löschen der Benutzerdaten",
|
erase: "DSGVO konformes Löschen der Benutzerdaten",
|
||||||
|
@ -122,6 +122,7 @@ const en = {
|
|||||||
auth_provider: "Provider",
|
auth_provider: "Provider",
|
||||||
},
|
},
|
||||||
helper: {
|
helper: {
|
||||||
|
password: "Changing password will log user out of all sessions.",
|
||||||
deactivate: "You must provide a password to re-activate an account.",
|
deactivate: "You must provide a password to re-activate an account.",
|
||||||
erase: "Mark the user as GDPR-erased",
|
erase: "Mark the user as GDPR-erased",
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user