gpg-lacre/gpg-mailgate-web/public_html/theme/home.php

47 lines
1.2 KiB
PHP
Raw Normal View History

<?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-10-02 20:27:28 +02:00
it under the terms of the GNU General Public License as published by
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-10-02 20:27:28 +02:00
GNU General Public License for more details.
2013-10-02 20:27:28 +02:00
You should have received a copy of the GNU General Public License
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>
<? } ?>
2013-09-28 23:38:18 +02:00
<p><?= $lang['home_text'] ?></p>
<form method="POST">
<table>
<tr>
2013-09-28 23:38:18 +02:00
<td><?= $lang['home_emaildesc'] ?></td>
<td><input type="text" name="email" /></td>
</tr>
<tr>
2013-09-28 23:38:18 +02:00
<td><?= $lang['home_keydesc'] ?></td>
<td><textarea name="key" rows="10" cols="80"></textarea></td>
</tr>
</table>
2013-09-28 23:38:18 +02:00
<input type="submit" value="<?= $lang['home_submitkey'] ?>" />
</form>
2013-09-28 23:38:18 +02:00
<p><?= $lang['home_footer'] ?></p>