Browse Source

see master password help directly inside the component

pull/342/head
Guillaume Vincent 8 years ago
parent
commit
b291b5cc56
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      src/views/Login.vue

+ 9
- 1
src/views/Login.vue View File

@@ -40,7 +40,14 @@
<label class="form-check-label"> <label class="form-check-label">
<input type="checkbox" class="form-check-input" v-model="useMasterPassword"> <input type="checkbox" class="form-check-input" v-model="useMasterPassword">
Check me if you want to use your master password here. Check me if you want to use your master password here.
<a href="https://github.com/lesspass/lesspass/wiki/FAQ#you-should-never-save-your-master-password">Why?</a>
<span class="tag tag-warning" v-on:click.prevent="seeMasterPasswordHelp=!seeMasterPasswordHelp">
?
</span>
<span class="text-warning" v-if="seeMasterPasswordHelp">
<br> Your master password <b>should not be saved</b> on a database even encrypted.
If you want to use your master password here, you can check the option.
It will replace your master password with a LessPass generated password.
</span>
</label> </label>
</small> </small>
</div> </div>
@@ -108,6 +115,7 @@
storage, storage,
password: '', password: '',
useMasterPassword: false, useMasterPassword: false,
seeMasterPasswordHelp: false,
showError: false, showError: false,
errorMessage: '', errorMessage: '',
loadingRegister: false, loadingRegister: false,


Loading…
Cancel
Save