forked from Mirrors/keyoxide-web
Clean up views
This commit is contained in:
parent
484b2cb95e
commit
99013987bc
3 changed files with 1 additions and 47 deletions
|
@ -48,25 +48,3 @@ block content
|
||||||
.card
|
.card
|
||||||
h3 Transparent funding
|
h3 Transparent funding
|
||||||
p Funded by donations. Keyoxide stands against VC and surveillance capitalism.
|
p Funded by donations. Keyoxide stands against VC and surveillance capitalism.
|
||||||
|
|
||||||
h2 Links
|
|
||||||
.hcards
|
|
||||||
.card
|
|
||||||
h3 Getting started
|
|
||||||
p
|
|
||||||
a(href='/about') About Keyoxide
|
|
||||||
br
|
|
||||||
a(href='/getting-started') Getting started
|
|
||||||
br
|
|
||||||
a(href='/guides') Guides
|
|
||||||
br
|
|
||||||
a(href='/faq') FAQ
|
|
||||||
|
|
||||||
.card
|
|
||||||
h3 Utilities
|
|
||||||
p
|
|
||||||
a(href='/util/profile-url') Profile URL generator
|
|
||||||
br
|
|
||||||
a(href='/util/wkd') Web Key Directory URL generator
|
|
||||||
br
|
|
||||||
a(href='/util/qrfp') Fingerprint QR generator
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ footer
|
||||||
h1 keyoxide.org
|
h1 keyoxide.org
|
||||||
a(href="/") Homepage
|
a(href="/") Homepage
|
||||||
br
|
br
|
||||||
a(href="/") What is Keyoxide?
|
a(href="/about") About Keyoxide
|
||||||
br
|
br
|
||||||
a(href="/getting-started") Getting started
|
a(href="/getting-started") Getting started
|
||||||
br
|
br
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
select#modeSelect.modeSelect(name='modeSelect')
|
|
||||||
option(value='auto' selected=(mode == "auto" ? true : false)) Autodetect
|
|
||||||
option(value='wkd' selected=(mode == "wkd" ? true : false)) Web Key Directory
|
|
||||||
option(value='hkp' selected=(mode == "hkp" ? true : false)) Keyserver
|
|
||||||
option(value='plaintext' selected=(mode == "plaintext" ? true : false)) Plaintext
|
|
||||||
option(value='keybase' selected=(mode == "keybase" ? true : false)) Keybase
|
|
||||||
|
|
||||||
.modesContainer
|
|
||||||
.modes.modes--auto(class=(mode == "auto" ? "modes--visible" : ""))
|
|
||||||
input#auto_input(type='text' name='auto_input' placeholder='Email / key id / fingerprint' value=(mode == "auto" ? input : ""))
|
|
||||||
|
|
||||||
.modes.modes--wkd(class=(mode == "wkd" ? "modes--visible" : ""))
|
|
||||||
input#wkd_input(type='text' name='wkd_input' placeholder='name@domain.org' value=(mode == "wkd" ? input : ""))
|
|
||||||
|
|
||||||
.modes.modes--hkp(class=(mode == "hkp" ? "modes--visible" : ""))
|
|
||||||
input#hkp_input(type='text' name='hkp_input' placeholder='Email / key id / fingerprint' value=(mode == "hkp" ? input : ""))
|
|
||||||
input#hkp_server(type='text' name='hkp_server' placeholder='https://keys.openpgp.org/ (default)')
|
|
||||||
|
|
||||||
.modes.modes--plaintext(class=(mode == "plaintext" ? "modes--visible" : ""))
|
|
||||||
textarea#plaintext_input(name='plaintext_input')
|
|
||||||
|
|
||||||
.modes.modes--keybase(class=(mode == "keybase" ? "modes--visible" : ""))
|
|
||||||
input#keybase_username(type='text' name='keybase_username' placeholder='username' value=(mode == "keybase" ? username : ""))
|
|
||||||
input#keybase_fingerprint(type='text' name='keybase_fingerprint' placeholder='fingerprint' value=(mode == "keybase" ? fingerprint : ""))
|
|
Loading…
Reference in a new issue