fix: correctly set autocomplet attribute on login form inputs

This commit is contained in:
Laurent Peuch 2023-02-19 20:50:21 +01:00
parent ac0cf3dc3c
commit 61e236f594

View file

@ -47,14 +47,16 @@ export default {
username: { username: {
label: this.$i18n.t('user_username'), label: this.$i18n.t('user_username'),
props: { props: {
id: 'username' id: 'username',
autocomplete: 'username'
} }
}, },
password: { password: {
label: this.$i18n.t('password'), label: this.$i18n.t('password'),
props: { props: {
id: 'password', id: 'password',
type: 'password' type: 'password',
autocomplete: 'current-password'
} }
} }
} }