21 lines
730 B
Text
21 lines
730 B
Text
% layout 'default';
|
|
% title 'Welcome';
|
|
<h1><%= $c->config->{serverh1header} %></h1>
|
|
<h2>Request a Public Key, using fingerprint</h2>
|
|
|
|
<form method="GET" action="/pks/lookup">
|
|
<label for="key_name_request">Fingerprint:</label>
|
|
<input type="hidden" id="op" name="op" value="get">
|
|
<input type="text" id="search" name="search" required><br>
|
|
<input type="submit" value="Request Key">
|
|
</form>
|
|
|
|
<h2>Search for keys</h2>
|
|
<form method="GET" action="/pks/lookup">
|
|
<label for="data">Search Data:</label>
|
|
<input type="hidden" id="op" name="op" value="index">
|
|
<!--<input type="hidden" id="options" name="options" value="mr">-->
|
|
<input type="text" id="search" name="search" required><br>
|
|
<input type="submit" value="Search">
|
|
</form>
|
|
|