hagrid-keyserver--hagrid/templates/index.html.hbs

18 lines
604 B
Handlebars
Raw Normal View History

2018-09-19 20:24:38 +00:00
{{#> layout }}
2018-11-22 15:40:59 +00:00
<h1 class="mt-5">Hagrid Public Key Server</h1>
<p class="lead">The verifying PGP key server.</p>
2018-09-19 20:24:38 +00:00
<h2>Search for keys</h2>
2018-10-24 17:44:36 +00: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 20:24:38 +00:00
<input type="submit" value="Search">
</form>
<h2>Upload your key</h2>
<form action="/pks/add" method=POST enctype=multipart/form-data>
<input type="file" id="keytext" name="keytext" placeholder="Your public key">
2018-09-19 20:24:38 +00:00
<input type="submit" value="Upload">
</form>
{{/layout}}