blob: e5f3e135dc6fae734579b7089d1ff6a7f942ddd1 (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>GPIGEON - Login</title>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>GPIGEON - Login</h1>
<form action="/cgi-bin/gpigeon.cgi" method="POST">
<table id="loginbox">
<tbody>
<tr>
<td>Password :</td>
<td><input type="password" name="password"></td>
</tr>
<tr id="authbtn">
<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">Source code here.</a> It is similar to <a href="https://hawkpost.co/">hawkpost.co</a>.</p>
</body>
</html>
|