mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #329 from JocelynDelalande/patch-1
Avoid suggesting saved password on user password change form
This commit is contained in:
commit
cd550a6fbc
1 changed files with 2 additions and 2 deletions
|
@ -205,12 +205,12 @@ export default {
|
|||
label: this.$i18n.t('password'),
|
||||
description: this.$i18n.t('good_practices_about_user_password'),
|
||||
descriptionVariant: 'warning',
|
||||
props: { id: 'change_password', type: 'password', placeholder: '••••••••' }
|
||||
props: { id: 'change_password', type: 'password', placeholder: '••••••••', autocomplete: "new-password" }
|
||||
},
|
||||
|
||||
confirmation: {
|
||||
label: this.$i18n.t('password_confirmation'),
|
||||
props: { id: 'confirmation', type: 'password', placeholder: '••••••••' }
|
||||
props: { id: 'confirmation', type: 'password', placeholder: '••••••••', autocomplete: "new-password" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue