2013-09-27 01:40:27 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
|
|
|
|
gpg-mailgate
|
|
|
|
|
|
|
|
This file is part of the gpg-mailgate source code.
|
|
|
|
|
|
|
|
gpg-mailgate is free software: you can redistribute it and/or modify
|
2013-09-28 04:21:55 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
2013-09-27 01:40:27 +02:00
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
gpg-mailgate source code is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2013-09-28 04:21:55 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2013-09-27 01:40:27 +02:00
|
|
|
|
2013-09-28 04:21:55 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2013-09-27 01:40:27 +02:00
|
|
|
along with gpg-mailgate source code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h1><?= $config['site_title'] ?></h1>
|
|
|
|
|
|
|
|
<? if(!empty($message)) { ?>
|
|
|
|
<p><b><i><?= htmlspecialchars($message) ?></i></b></p>
|
|
|
|
<? } ?>
|
|
|
|
|
|
|
|
<p>Use the form below to submit an ASCII-armored PGP public key. After submission, you will receive an email asking you to confirm your email address. Note that this is not a keyserver.</p>
|
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>Your email address (must match key)</td>
|
|
|
|
<td><input type="text" name="email" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>ASCII-armored PGP public key</td>
|
|
|
|
<td><textarea name="key" rows="10" cols="80"></textarea></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<input type="submit" value="Submit key" />
|
|
|
|
</form>
|
2013-09-28 23:03:41 +02:00
|
|
|
|
|
|
|
<p><a href="https://github.com/uakfdotb/gpg-mailgate/tree/www">gpg-mailgate-web</a> is released under the <a href="https://www.gnu.org/licenses/lgpl-3.0.txt">GNU LGPL</a>.</p>
|