blob: d6b2583c96e834012f23b98cd5ba3c9c23e99bf0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<html>
<head>
<title>GPIGEON - Login</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="styles.css">
<meta charset="utf-8">
<style>
td{border:none;}
</style>
</head>
<body>
<h1 style="text-align:center">GPIGEON - Login</h1>
<form action="/cgi-bin/gpigeon.cgi" method="POST">
<table style="border:none;margin-right:auto;margin-left:auto">
<tbody>
<tr>
<td>Username :</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password :</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="S'authentifier"></td>
</tr>
</tbody>
</table>
</form>
<p><a href="http://git.les-miquelots.net/gpigeon" title="gpigeon download link" alt="gpigeon download link">Source code here.</a> It is similar to <a href="https://hawkpost.co/">hawkpost.co</a>.</p>
</body>
</html>
|