aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Lionel <lionelmiquel@sfr.fr>2020-11-26 21:45:57 +0100
committerMiquel Lionel <lionelmiquel@sfr.fr>2020-11-26 21:48:12 +0100
commit537ab6bc23125106c30faf181027b569c8730e86 (patch)
tree0b007cd9db5e4d26f980291b15bc2f38b0758361
parent51657033da571328a8aed271a7eac6158e384b5a (diff)
downloadgpigeon-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.
-rw-r--r--index.html39
1 files changed, 13 insertions, 26 deletions
diff --git a/index.html b/index.html
index f46b5a0..67d91ce 100644
--- a/index.html
+++ b/index.html
@@ -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>