From de3490a9e96197bdb10723c30a843a8725571f7f Mon Sep 17 00:00:00 2001 From: "leo.tuaillon" Date: Sat, 21 Jan 2023 16:23:00 +0100 Subject: [PATCH] =?UTF-8?q?premi=C3=A8re=20version=20html/css=20de=20la=20?= =?UTF-8?q?page=20de=20connection/inscription?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- www/login/index.html | 37 +++++++++++++++++++++++++++++++++++++ www/login/login.css | 25 +++++++++++++++++++++++++ 3 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 www/login/index.html create mode 100644 www/login/login.css diff --git a/.gitignore b/.gitignore index 40cd7de..c2375b2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ # Generated by package manager node_modules/ - +*ionicons # Generated by Cordova /plugins/ /platforms/ diff --git a/www/login/index.html b/www/login/index.html new file mode 100644 index 0000000..99d02e9 --- /dev/null +++ b/www/login/index.html @@ -0,0 +1,37 @@ + + + + + Connection + + + + + +
+
+

S'identifier

+
+ Identifiant (eMail) +
+
+ +
+ +
+
+
+ Mot de passe +
+
+ +
+ +
+
+ Mot de passe oubliƩ +
S'inscrire +
+
+ + \ No newline at end of file diff --git a/www/login/login.css b/www/login/login.css new file mode 100644 index 0000000..a1911c0 --- /dev/null +++ b/www/login/login.css @@ -0,0 +1,25 @@ +@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap'); +*{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Alegreya',sans-serif; +} +a{ + text-decoration: none; +} +body{ + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: #585858; +} + +.container{ + position: relative; + width: 400px; + min-height: 550px; + justify-content: center; + align-items: center; +} \ No newline at end of file