2021-03-01 07:01:34 -07:00
|
|
|
extends templates/base.pug
|
|
|
|
|
2021-05-02 04:49:52 -06:00
|
|
|
mixin generateUser(user, isPrimary)
|
|
|
|
h2
|
|
|
|
| #{user.userData.email}
|
|
|
|
if isPrimary
|
|
|
|
small.primary primary
|
|
|
|
each claim in user.claims
|
|
|
|
kx-claim(data-claim=claim)
|
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
block js
|
2021-05-02 04:49:52 -06:00
|
|
|
script(type='application/javascript' src='/static/dialog-polyfill.js' charset='utf-8')
|
2021-03-01 07:01:34 -07:00
|
|
|
script(type='application/javascript' src='/static/openpgp.min.js' charset='utf-8')
|
|
|
|
script(type='application/javascript' src='/static/doip.js' charset='utf-8')
|
2021-05-02 04:49:52 -06:00
|
|
|
script(type='application/javascript' src='/static/kx-claim.js' charset='utf-8')
|
|
|
|
script(type='application/javascript' src='/static/kx-key.js' charset='utf-8')
|
2021-03-01 07:01:34 -07:00
|
|
|
script(type='application/javascript' src='/static/scripts.js' charset='utf-8')
|
|
|
|
|
2021-03-30 08:22:03 -06:00
|
|
|
block css
|
|
|
|
link(rel='stylesheet' href='/static/dialog-polyfill.css')
|
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
block content
|
2021-03-29 09:08:48 -06:00
|
|
|
section.profile.narrow
|
2021-01-10 07:11:44 -07:00
|
|
|
noscript
|
|
|
|
p Keyoxide requires JavaScript to function.
|
2021-03-01 07:01:34 -07:00
|
|
|
|
2021-04-05 07:51:43 -06:00
|
|
|
dialog#dialog--encryptMessage
|
|
|
|
div
|
|
|
|
form(method='post')
|
|
|
|
textarea.input(name='message' placeholder='Message')
|
|
|
|
input(type='submit' name='submit' value='ENCRYPT MESSAGE')
|
|
|
|
textarea.output(name='message' placeholder='Waiting for input' readonly)
|
|
|
|
form(method="dialog")
|
|
|
|
input(type="submit" value="Close")
|
|
|
|
|
|
|
|
dialog#dialog--verifySignature
|
|
|
|
div
|
|
|
|
form(method='post')
|
|
|
|
textarea.input(name='signature' placeholder='Signature')
|
|
|
|
input(type='submit' name='submit' value='VERIFY SIGNATURE')
|
|
|
|
textarea.output(name='message' placeholder='Waiting for input' readonly)
|
|
|
|
form(method="dialog")
|
|
|
|
input(type="submit" value="Close")
|
|
|
|
|
2021-03-01 07:01:34 -07:00
|
|
|
#profileHeader.card.card--profileHeader
|
2021-05-02 04:49:52 -06:00
|
|
|
a.avatar(href="#")
|
|
|
|
img#profileAvatar(src=data.extra.avatarURL alt="avatar")
|
|
|
|
|
|
|
|
p#profileName= data.keyData.users[data.keyData.primaryUserIndex].userData.name
|
|
|
|
//- p#profileURLFingerprint
|
|
|
|
//- a(href=data.key.fetchURL)=data.keyData.fingerprint
|
|
|
|
.buttons
|
|
|
|
button(onClick="document.querySelector('#dialog--encryptMessage').showModal();") Encrypt message
|
|
|
|
button(onClick="document.querySelector('#dialog--verifySignature').showModal();") Verify signature
|
2021-03-01 07:01:34 -07:00
|
|
|
|
|
|
|
#profileProofs.card
|
2021-05-02 04:49:52 -06:00
|
|
|
h2 Key
|
|
|
|
kx-key(data-keydata=data.keyData)
|
|
|
|
|
|
|
|
+generateUser(data.keyData.users[data.keyData.primaryUserIndex], true)
|
|
|
|
each user, index in data.keyData.users
|
|
|
|
unless index == data.keyData.primaryUserIndex
|
|
|
|
+generateUser(user, false)
|
|
|
|
|