remove dist

This commit is contained in:
seu 2018-10-24 19:47:37 +02:00
parent 3b662441af
commit a7cb393286
8 changed files with 0 additions and 6594 deletions

6410
dist/public/site.css vendored

File diff suppressed because it is too large Load Diff

70
dist/public/site.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,10 +0,0 @@
{{#> layout}}
{{#if deleted }}
<h1>Key deleted</h1>
<p>We deleted your key from the server. You can re-upload any time.</p>
{{else}}
<h1>Key deletion failed</h1>
<p>We don't recognize the token you provided. It's either wrong or expired.
You can request the deletion of your key again to get another deletion token.</p>
{{/if}}
{{/layout}}

View File

@ -1,5 +0,0 @@
{{#> layout}}
<h1>Deletion requested</h1>
<p>We sent you an email with instuctions how to delete you key to all of your verified email addresses.</p>
<b>Token:</b> <a href="/confirm/{{ token }}"><tt>{{ token }}</tt></a>
{{/layout}}

View File

@ -1,17 +0,0 @@
{{#> layout }}
<h1 class="mt-5">Garbage Pile Public Key Server</h1>
<p class="lead">The verifying PGP key server. Powered by p&equiv;pnology!
<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="/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}}

View File

@ -1,57 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Garbage Pile Public Key Server</title>
<link href="/static/site.css" rel="stylesheet"></head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col"></div>
<div class="col-md-10">
{{> @partial-block }}
</div>
<div class="col"></div>
</div>
</div>
<script type="text/javascript" src="/static/site.js"></script></body>
</html>

View File

@ -1,12 +0,0 @@
{{#> layout }}
<h1>Tokens</h1>
{{#if tokens}}
<ul>
{{#each tokens}}
<li>{{userid}}: <a href="/verify/{{token}}"><tt>{{token}}</tt></a></li>
{{/each}}
</ul>
{{else}}
<em>No new user IDs</em>
{{/if}}
{{/layout}}

View File

@ -1,13 +0,0 @@
{{#> layout}}
{{#if verified }}
<h1>Email verified</h1>
<p>You've verified <em>{{ userid }}</em> successfully. Everybody who knows
your email address is no able to find your key. You can <a href="/delete/{{
fpr }}">delete</a> your key any time you want.</p>
{{else}}
<h1>Email verification failed</h1>
<p>We don't recognize the token you provided. It's either wrong or expired.
Upload your key again to get another verification token sent to you.</p>
{{/if}}
{{/layout}}