From 7c6befe24d519bb0bc6ba4b62aea5a164bb76783 Mon Sep 17 00:00:00 2001 From: beaulaton Date: Mon, 23 Sep 2024 10:29:57 +0200 Subject: [PATCH 1/4] style --- pages/login.html | 13 +++++++++++++ styles/styleLogin.css | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 pages/login.html create mode 100644 styles/styleLogin.css diff --git a/pages/login.html b/pages/login.html new file mode 100644 index 0000000..bd95c86 --- /dev/null +++ b/pages/login.html @@ -0,0 +1,13 @@ + + + + + + + Wiki Fantasy : Login + + + +

Login

+ + \ No newline at end of file diff --git a/styles/styleLogin.css b/styles/styleLogin.css new file mode 100644 index 0000000..632fdaf --- /dev/null +++ b/styles/styleLogin.css @@ -0,0 +1,8 @@ +body{ + background-color: #120b1d ; +} + +p{ + color : white; + font-family: lemon; +} \ No newline at end of file From 233e0cf9edea8b0fd61de60795ee4201514161e8 Mon Sep 17 00:00:00 2001 From: "kevin.modejar" Date: Mon, 23 Sep 2024 11:42:32 +0200 Subject: [PATCH 2/4] inscription --- pages/signin.html | 44 +++++++++++++++++++++++ styles/styleSignin.css | 80 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 124 insertions(+) create mode 100644 pages/signin.html create mode 100644 styles/styleSignin.css diff --git a/pages/signin.html b/pages/signin.html new file mode 100644 index 0000000..3481154 --- /dev/null +++ b/pages/signin.html @@ -0,0 +1,44 @@ + + + + + + + Wiki Fantasy : inscription + + + +

▶ S'inscrire ◀

+ + + + \ No newline at end of file diff --git a/styles/styleSignin.css b/styles/styleSignin.css new file mode 100644 index 0000000..4f34b61 --- /dev/null +++ b/styles/styleSignin.css @@ -0,0 +1,80 @@ +body{ + background-color: #120b1d ; + font-family: Lemon; +} + +h1{ + color : white; + text-align: center; + +} + +.signin{ + background-color: #000000; + border-radius: 25px; + display: grid; + grid-template-columns: 2fr 1fr; + grid-template-rows: repeat(5, 1fr); + width : 30%; + margin-left: 33%; + margin-top: 3%; + padding : 2%; +} + +p{ + color :white; + font-size: 20px; + margin-top: 7%; + font-weight: bold; +} + +.DivId{ + grid-area: 1 / 1 / 2 / 2; +} + +.DivEmail{ + grid-area: 2 / 1 / 3 / 2; +} + +.mdp{ + grid-area: 3 / 1 / 4 / 3; +} + +.confmdp{ + grid-area: 4 / 1 / 5 / 3; +} + +.imgprof{ + grid-area: 1 / 2 / 3 / 3; +} + +.confirmer{ + grid-area: 5 / 1 / 6 / 3; + align-self: center; + text-align: center; +} + +.champ{ + width: 90%; + height : 35%; + border-radius: 25px; + margin-left: 1%; + padding-left: 3%; + margin-top: -1%; + border: none; + font-size: 15px; +} + +.btn{ + background: linear-gradient(90deg, #6100ff 0%, #1b0048 100%); + margin-top: 10%; + width:75%; + font-size: 20px; + padding: 2%; + border-radius: 25px; + color : white; + border: none; +} + + + \ No newline at end of file From 846f33012507ea6899ae7abf4d8144ea0d14d99f Mon Sep 17 00:00:00 2001 From: beaulaton Date: Mon, 23 Sep 2024 11:44:02 +0200 Subject: [PATCH 3/4] page connexion --- pages/login.html | 27 +++++++++++++++++---- styles/styleLogin.css | 56 +++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 77 insertions(+), 6 deletions(-) diff --git a/pages/login.html b/pages/login.html index bd95c86..cc68cfe 100644 --- a/pages/login.html +++ b/pages/login.html @@ -1,13 +1,32 @@ - + - Wiki Fantasy : Login - + Wiki Fantasy : Connexion + -

Login

+

▶ Connexion ◀

+ + \ No newline at end of file diff --git a/styles/styleLogin.css b/styles/styleLogin.css index 632fdaf..f57cfe8 100644 --- a/styles/styleLogin.css +++ b/styles/styleLogin.css @@ -2,7 +2,59 @@ body{ background-color: #120b1d ; } +h1{ + color : white; + font-family: Lemon; + text-align: center; + font-size: 32px; +} + p{ color : white; - font-family: lemon; -} \ No newline at end of file + font-size: 20px; + font-family: Lemon; +} + +.login{ + background-color: black; + width: 30%; + margin-left: 33%; + margin-top: 3%; + border-radius: 25px; + padding: 2%; +} + +.connexion{ + width:90%; + height: 40px; + padding-left: 3%; + margin-left: 1%; + margin-top: -1%; + border-radius: 25px; + border: none; + font-size: 15px; +} + + +.createAccount{ + margin-top: 5%; + margin-bottom: 5%; + font-size: 13px; + text-align: center; + color: white; +} + + +.buttonSudmiteDiv{ + text-align: center; +} + +.buttonSudmite{ + background: linear-gradient(90deg, #6100ff 0%, #1b0048 100%); + border: none; + color: white; + padding: 2%; + border-radius: 25px; + width: 75%; + font-size: 20px; +} From 0b23fbbe9fceb3e89854a66bc54daea71eb8bb45 Mon Sep 17 00:00:00 2001 From: beaulaton Date: Mon, 23 Sep 2024 11:47:06 +0200 Subject: [PATCH 4/4] required --- pages/login.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/login.html b/pages/login.html index cc68cfe..0a88c47 100644 --- a/pages/login.html +++ b/pages/login.html @@ -12,10 +12,10 @@