Modification du formulaire d'inscription

This commit is contained in:
stiti
2024-05-24 23:36:27 +02:00
parent 664c17410e
commit d69c8fe37a
3 changed files with 59 additions and 28 deletions

View File

@@ -30,7 +30,6 @@ label {
#email,
#nom,
#prenom,
#telephone,
#password,
#confirm_password {
width: 100%;
@@ -41,6 +40,35 @@ label {
box-sizing: border-box;
}
.password-wrapper {
position: relative;
display: flex;
align-items: center;
}
.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
flex: 1;
padding-right: 80px;
}
.password-wrapper button {
position: absolute;
right: 10px;
padding: 5px 10px;
background-color: #634caf;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
margin-bottom: 10px;
}
.password-wrapper button:hover {
background-color: rgb(54, 16, 119);
}
.btn-submit {
width: 100%;
padding: 10px;