aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEv Bogue <ev@evbogue.com>2020-01-12 12:32:35 -0600
committerEv Bogue <ev@evbogue.com>2020-01-12 12:32:35 -0600
commit8abaa0d61941a8cbb25aa16efda712d17ca2d9c2 (patch)
tree07d51820d956458b0be35c6646878a490d31aacd
parent87ad0e1126377cbe876f654b00da4ec546dc7d43 (diff)
grammar and add a link to ed25519
-rw-r--r--settings.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.js b/settings.js
index 889e0ea..3c175b3 100644
--- a/settings.js
+++ b/settings.js
@@ -7,7 +7,7 @@ function settingsPage (keys) {
var keyDiv = h('div', {classList: 'message'})
- keyDiv.appendChild(h('p', {innerHTML: marked('### Your keypair \n\n This is your ed25519 public/private keypair. It was generated using [TweetNaCl.js](https://tweetnacl.js.org/#/). \n\n Bogbook does not use logins and passwords, instead you are able to post by signing messages with your keypair. \n\n Because Bogbook uses keypairs for identities, as long as your private key is safe no one can post to your feed (or delete your posts) without your permission. \n\n**Save your key** in a safe place so that you can continue to use the same identity.')}))
+ keyDiv.appendChild(h('p', {innerHTML: marked('### Your keypair \n\n This is your [ed25519](https://ed25519.cr.yp.to/) keypair. It was generated using [TweetNaCl.js](https://tweetnacl.js.org/#/). \n\n Bogbook does not use logins and passwords, instead you are able to post by signing messages with your keypair. \n\n Because Bogbook uses keypairs for identities, keep your keypair safe so no one can post to your feed (or delete your posts) without your permission. \n\n**Save your key** in a safe place so that you can continue to use the same identity.')}))
keyDiv.appendChild(h('pre', {style: 'width: 80%'}, [h('code', [JSON.stringify(keys)])]))