Merge branch 'master' of https://codefirst.iut.uca.fr/git/nathan.boileau/Scripted
continuous-integration/drone/push Build is passing Details

ServeurDeTest
johan 2 years ago
commit e80bc5b711

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 MiB

@ -16,7 +16,7 @@ body {
color: white; color: white;
scroll-behavior: smooth; scroll-behavior: smooth;
height: 100vh; height: 100vh;
background-image: url("../../assets/img/ImgMain2.png"); background-image: url("../../assets/img/LoginBG.png");
background-position: center center; background-position: center center;
background-attachment: fixed; background-attachment: fixed;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -43,8 +43,9 @@ body {
.login-box .user-box input { .login-box .user-box input {
width: 100%; width: 100%;
padding: 10px 0; font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px; padding: 8px 0;
font-size: 12px;
color: #fff; color: #fff;
border: none; border: none;
border-bottom: 1px solid #fff; border-bottom: 1px solid #fff;
@ -70,7 +71,7 @@ body {
.login-box .user-box input:valid ~ label { .login-box .user-box input:valid ~ label {
top: -20px; top: -20px;
left: 0; left: 0;
color: #6090d1; color: #be5631;
font-size: 12px; font-size: 12px;
} }
@ -80,7 +81,7 @@ body {
display: inline-flex; display: inline-flex;
justify-content: center; justify-content: center;
padding: 10px 0px; padding: 10px 0px;
color: #6090d1; color: #5fc198;
background: transparent; background: transparent;
border: none; border: none;
font-size: 16px; font-size: 16px;
@ -97,11 +98,11 @@ body {
.login-box a:hover, .login-box a:hover,
.login-box button:hover { .login-box button:hover {
background: #6090d1; background: #5fc198;
color: #fff; color: #fff;
border-radius: 5px; border-radius: 5px;
box-shadow: 0 0 5px #6090d1, 0 0 25px #6090d1, 0 0 50px #6090d1, box-shadow: 0 0 5px #5fc198, 0 0 25px #5fc198, 0 0 50px #5fc198,
0 0 100px #6090d1; 0 0 100px #5fc198;
} }
.login-box a span, .login-box a span,
@ -116,7 +117,7 @@ body {
left: -100%; left: -100%;
width: 100%; width: 100%;
height: 2px; height: 2px;
background: linear-gradient(90deg, transparent, #6090d1); background: linear-gradient(90deg, transparent, #5fc198);
animation: btn-anim1 1s linear infinite; animation: btn-anim1 1s linear infinite;
} }
@ -136,7 +137,7 @@ body {
right: 0; right: 0;
width: 2px; width: 2px;
height: 100%; height: 100%;
background: linear-gradient(180deg, transparent, #6090d1); background: linear-gradient(180deg, transparent, #5fc198);
animation: btn-anim2 1s linear infinite; animation: btn-anim2 1s linear infinite;
animation-delay: 0.25s; animation-delay: 0.25s;
} }
@ -157,7 +158,7 @@ body {
right: -100%; right: -100%;
width: 100%; width: 100%;
height: 2px; height: 2px;
background: linear-gradient(270deg, transparent, #6090d1); background: linear-gradient(270deg, transparent, #5fc198);
animation: btn-anim3 1s linear infinite; animation: btn-anim3 1s linear infinite;
animation-delay: 0.5s; animation-delay: 0.5s;
-webkit-animation: btn-anim3 1s linear infinite; -webkit-animation: btn-anim3 1s linear infinite;
@ -179,7 +180,7 @@ body {
left: 0; left: 0;
width: 2px; width: 2px;
height: 100%; height: 100%;
background: linear-gradient(360deg, transparent, #6090d1); background: linear-gradient(360deg, transparent, #5fc198);
animation: btn-anim4 1s linear infinite; animation: btn-anim4 1s linear infinite;
animation-delay: 0.75s; animation-delay: 0.75s;
} }

@ -22,9 +22,9 @@
<form action="index.php?action=login" method="POST"> <form action="index.php?action=login" method="POST">
<div class="user-box mb-5 position-relative"> <div class="user-box mb-5 position-relative">
<input type="text" id="email" name="email" required="" /> <input type="text" id="email" name="email" required="" />
<label class="py-1">Email</label> <label>Email</label>
</div> </div>
<div class="user-box mb-3 position-relative"> <div class="user-box mb-5 position-relative">
<input type="password" id="password" name="password" required="" /> <input type="password" id="password" name="password" required="" />
<label>Password</label> <label>Password</label>
</div> </div>

Loading…
Cancel
Save