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: {
label: this.$i18n.t('user_username'),
props: {
id: 'username'
id: 'username',
autocomplete: 'username'
}
},
password: {
label: this.$i18n.t('password'),
props: {
id: 'password',
type: 'password'
type: 'password',
autocomplete: 'current-password'
}
}
}