1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00
This commit is contained in:
Kyle Spearrin
2017-10-26 17:20:04 -04:00
parent 2bf161af8d
commit 2d63e2901d

View File

@@ -73,7 +73,7 @@
<pre>{{privateKey.b64}}</pre>
<button type="button" id="deriveKeys" class="btn btn-primary" v-on:click="generateKeys">
Regenerate Keys
<i class="fa fa-refresh"></i> Regenerate Keys
</button>
<hr />
@@ -87,8 +87,6 @@
</div>
</form>
<hr />
<h2>The "Cipher String"</h2>
<pre>{{cipher.string}}</pre>
@@ -470,6 +468,11 @@
// Generate initial set of keys
vm.generateKeys();
// Set default values
vm.email = 'user@example.com';
vm.masterPassword = 'password123';
vm.plaintext = 'This is a secret.';
})();
</script>
</body>