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