set autocomplete off for addPassword checkbox

This commit is contained in:
ehuggett 2017-11-02 00:08:36 +00:00
parent fdafc1c59e
commit 98491eed01
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module.exports = function(state, emit) {
const div = html`
<div class="selectPassword">
<div id="addPasswordWrapper">
<input id="addPassword" type="checkbox" onchange=${togglePasswordInput}/>
<input id="addPassword" type="checkbox" autocomplete="off" onchange=${togglePasswordInput}/>
<label for="addPassword">
${state.translate('requirePasswordCheckbox')}</label>
</div>