keyoxide-web/views/util/wkd.pug

27 lines
1 KiB
Text
Raw Permalink Normal View History

2021-03-31 06:55:09 -06:00
extends ../templates/base.pug
block content
2023-09-15 06:25:15 -06:00
section
2022-09-28 05:08:12 -06:00
h1 Web Key Directory URL generator
2021-03-31 06:55:09 -06:00
form#form-util-wkd(method='post')
p
| This tool computes the part of the WKD URL that corresponds to the username when
2022-09-28 05:08:12 -06:00
a(href='https://docs.keyoxide.org/web-key-directory') uploading keys using web key directory
2021-03-31 06:55:09 -06:00
| .
p
| If you enter the entire WKD identifier (username@domain.org), this tool will also generate the complete URLs.
2021-11-14 09:20:28 -07:00
p
| Please note that Keyoxide does not add the "?l=…" when performing WKD requests. Make sure that the "l" parameter is optional when implementing WKD on your own server.
2021-03-31 06:55:09 -06:00
h3 Input
input#input(type='text' name='input' placeholder='WKD username or identifier' value=input)
h3 Output
h4 Local part
pre
2022-09-28 05:08:12 -06:00
code#output.full-width Waiting for input…
2021-03-31 06:55:09 -06:00
h4 Direct URL
pre
2022-09-28 05:08:12 -06:00
code#output_url_direct.full-width Waiting for input…
2021-03-31 06:55:09 -06:00
h4 Advanced URL
pre
2022-09-28 05:08:12 -06:00
code#output_url_advanced.full-width Waiting for input…