1
0
Fork 0
mirror of https://gitlab.com/hagrid-keyserver/hagrid.git synced 2023-02-13 20:55:02 -05:00
hagrid-keyserver--hagrid/web/index.html.hbs

18 lines
623 B
Handlebars
Raw Normal View History

2018-09-19 16:24:38 -04:00
{{#> layout }}
2018-10-18 10:26:25 -04:00
<h1 class="mt-5">Garbage Pile Public Key Server</h1>
<p class="lead">The verifying PGP key server. Powered by p&equiv;pnology!
2018-09-19 16:24:38 -04:00
<h2>Search for keys</h2>
2018-10-24 13:44:36 -04:00
<form action="/pks/lookup" method=GET>
<input type="search" id="search" name="search" placeholder="Email">
<input type="hidden" id="op" name="op" value="get">
2018-09-19 16:24:38 -04:00
<input type="submit" value="Search">
</form>
<h2>Upload your key</h2>
<form action="/keys" method=POST enctype=multipart/form-data>
<input type="file" id="key" name="key" placeholder="Your public key">
<input type="submit" value="Upload">
</form>
{{/layout}}