diff options
author | Miquel Lionel <lionel@les-miquelots.net> | 2021-06-18 22:13:54 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2021-06-23 13:48:56 +0100 |
commit | 420155e750c4b95dd4327d7adb4310a64eafb364 (patch) | |
tree | 3c7ea05d24b73e1467489530b4f7c9be50e0af7c /index.html | |
parent | 416fb73fbccf28ff256de352cd9b14803423852d (diff) | |
download | gpigeon-420155e750c4b95dd4327d7adb4310a64eafb364.tar.gz gpigeon-420155e750c4b95dd4327d7adb4310a64eafb364.zip |
add some update from the master.
- Added the README.md form master branch.
- Added new script gpigeonctl: will allow to initialize the database and manage it (add or delete and user, purge cookies).
- Added the Makefile and the config.dek.mk from master branch
with some changes
- Added nginx config from master branch
- Rename gpigeon.css -> styles.css
- gpigeon-template.cgi: the -w flag on the shebang is
useless because we already have "use warnings". Also, the man
page discourage its use.
- Fixed link-tmpl-template.cgi: the self-deletion now occurs
as intended, and not only when in HAS_MAILSERVER=0 mode. also
fixed the indenting around these parts because it was a clusterfuck
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 43 |
1 files changed, 30 insertions, 13 deletions
@@ -1,21 +1,38 @@ <!DOCTYPE html> <html> <head> - <title>Gpigeon login page</title> - <link rel="icon" type="image/x-icon" href="favicon.ico"> - <link rel="stylesheet" type="text/css" href="gpigeon.css"> + <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 🕊️</h1> - <form action="/cgi-bin/gpigeon.cgi" method="POST"> - 👤 Username : <input type="text" name="user"> - <br> - 🔒 Password : <input type="password" name="password"> - <input type="submit" value="Log in"> - <p><a href="register/index.html" alt="Creation of a - gpigeon.les-miquelots.net - account">Create an account</a><p> - </form> + <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> |