Browse Source

make restore key password a password field

pull/32/head
Jonathan Cobb 4 years ago
parent
commit
6c5c3f03f3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/account/NetworkPage.vue

+ 1
- 1
src/account/NetworkPage.vue View File

@@ -87,7 +87,7 @@
</div>
<div class="form-group">
<label for="restoreKeyPassword">{{messages.field_network_key_download_password}}</label>
<input type="text" v-model="restoreKeyPassword" v-validate="'required'" name="restoreKeyPassword"
<input type="password" v-model="restoreKeyPassword" v-validate="'required'" name="restoreKeyPassword"
class="form-control" :class="{ 'is-invalid': errors.has('password') }"
:autofocus="this.$route.query.hasOwnProperty('keys_code')"/>
<div v-if="errors.has('password')" class="invalid-feedback">{{ errors.first('password') }}</div>


Loading…
Cancel
Save