diff options
author | Miquel Lionel <lionelmiquel@sfr.fr> | 2020-11-26 21:45:57 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2020-11-26 21:48:12 +0100 |
commit | 537ab6bc23125106c30faf181027b569c8730e86 (patch) | |
tree | 0b007cd9db5e4d26f980291b15bc2f38b0758361 /index.html | |
parent | 51657033da571328a8aed271a7eac6158e384b5a (diff) | |
download | gpigeon-537ab6bc23125106c30faf181027b569c8730e86.tar.gz gpigeon-537ab6bc23125106c30faf181027b569c8730e86.zip |
Removing custom strings from index.html
- less french strings
- better indentation
- h1 tag is not in the form tag now
- removed the style tag in head since its moved to
gpigeon.css stylesheet.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 39 |
1 files changed, 13 insertions, 26 deletions
@@ -1,29 +1,16 @@ <!DOCTYPE html> <html> -<head> - - <link rel="icon" type="image/x-icon" href="/gpigeon/gpigeon.ico"> - <title>Auth2gpigeon</title> - <style> - html{background-color:skyblue;} - #crypto_secu{ - border: 1px solid black; - margin:5%; - float:left; - } - </style> -<meta charset="utf-8"> -</head> -<body> -<form action="/cgi-bin/gpigeon.cgi" method="POST"> - <h1 style="text-align:center">๐ง Gpigeon ๐๏ธ</h1> - ๐ Mot de passe : <input type="password" name="password"> - <input type="submit" value="S'authentifier"> - </form> - - <a href="https://xkcd.com/538/"><img id="crypto_secu" src="/images/crypto_secu.png" - title="XKCD fait redescendre les nerds du chiffrement sur terre" - alt="bande dessinรฉe de XKCD faisant redescendre les nerds du chiffrement sur terre"></a> -</body> - + <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"> + <meta charset="utf-8"> + </head> + <body> + <h1 style="text-align:center">๐ง Gpigeon ๐๏ธ</h1> + <form action="/cgi-bin/gpigeon.cgi" method="POST"> + ๐ Password : <input type="password" name="password"> + <input type="submit" value="S'authentifier"> + </form> + </body> </html> |