mirror of
https://gitlab.com/hagrid-keyserver/hagrid.git
synced 2023-02-13 20:55:02 -05:00
18 lines
604 B
Handlebars
18 lines
604 B
Handlebars
|
{{#> layout }}
|
||
|
<h1 class="mt-5">Hagrid Public Key Server</h1>
|
||
|
<p class="lead">The verifying PGP key server.</p>
|
||
|
|
||
|
<h2>Search for keys</h2>
|
||
|
<form action="/pks/lookup" method=GET>
|
||
|
<input type="search" id="search" name="search" placeholder="Email">
|
||
|
<input type="hidden" id="op" name="op" value="get">
|
||
|
<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">
|
||
|
<input type="submit" value="Upload">
|
||
|
</form>
|
||
|
{{/layout}}
|