diff --git a/S2/DevWeb/Projet/src/main/webapp/css/login.css b/S2/DevWeb/Projet/src/main/webapp/css/login.css new file mode 100644 index 0000000..c6d78bb --- /dev/null +++ b/S2/DevWeb/Projet/src/main/webapp/css/login.css @@ -0,0 +1,62 @@ +html { + height: 100%; + display: flex; + align-items: center; +} + +body { + width: 100%; +} + +main { + width: 100%; + height: 100%; + display: flex; + flex-direction: row; + align-items: center; +} + +#title { + width:60%; + text-align: center; + font-size: xxx-large; +} + +#form { + width: 18%; + height: 100%; + border-left: ridge; + padding-left: 6%; +} + +h1 { + justify-self: center; +} + +#loginForm, #registerForm { + display: grid; +} + +.field { + display: flex; + flex-direction: row; + width: auto; + justify-content: space-between; + margin: 1%; +} + +#birthdate { + width: 59%; + text-align: right; +} +.submit { + justify-self: right; + width: 35%; + margin: 1%; +} + +p { + border-top: ridge; + padding-top: 5%; +} + diff --git a/S2/DevWeb/Projet/src/main/webapp/login.jsp b/S2/DevWeb/Projet/src/main/webapp/login.jsp index a982e97..e0672df 100644 --- a/S2/DevWeb/Projet/src/main/webapp/login.jsp +++ b/S2/DevWeb/Projet/src/main/webapp/login.jsp @@ -4,10 +4,13 @@