mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix: correctly set autocomplet attribute on login form inputs
This commit is contained in:
parent
ac0cf3dc3c
commit
61e236f594
1 changed files with 4 additions and 2 deletions
|
@ -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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue