diff options
author | Miquel Lionel <lionelmiquel@sfr.fr> | 2020-11-26 22:21:29 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2020-11-26 22:21:29 +0100 |
commit | 416fb73fbccf28ff256de352cd9b14803423852d (patch) | |
tree | 620f3871c031b27164659f624b918ee8170aba6b /index.html | |
parent | 537ab6bc23125106c30faf181027b569c8730e86 (diff) | |
download | gpigeon-416fb73fbccf28ff256de352cd9b14803423852d.tar.gz gpigeon-416fb73fbccf28ff256de352cd9b14803423852d.zip |
adding username input field
- and a link to create an account
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -2,15 +2,20 @@ <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"> + <link rel="icon" type="image/x-icon" href="favicon.ico"> + <link rel="stylesheet" type="text/css" href="gpigeon.css"> <meta charset="utf-8"> </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="S'authentifier"> + <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> </body> </html> |