better error handling register

This commit is contained in:
Janis M
2022-03-29 14:38:40 +02:00
parent 5c128cb2ae
commit 283d2fe66f
16 changed files with 367 additions and 260 deletions

View File

@@ -1,15 +1,11 @@
h1{
text-align: center;
}
form{
.auth_form{
display:block;
margin-left: auto;
margin-right: auto;
width: 500px;
}
form label{
.auth_form label{
display:block;
margin-left: auto;
margin-right: auto;
@@ -17,7 +13,7 @@ form label{
margin-top: 20px;
}
form label p{
.auth_form label p{
width: 100%;
display:block;
margin-left: auto;
@@ -26,7 +22,7 @@ form label p{
font-weight: bold;
letter-spacing: 1.5px;
}
form label input{
.auth_form label input{
width: 100%;
display:block;
margin-left: auto;
@@ -37,16 +33,18 @@ form label input{
background-color: rgb(255, 255, 255);
transition: 0.1s;
transition-timing-function: linear;
padding-left:5px;
padding-right: 5px;
outline: none !important;
}
form h4{
.auth_form h4{
text-align: center;
margin-top: 30px;
margin-bottom: 0px;
}
/* Submit button with blue background horizontal center*/
form input[type="submit"]{
.auth_form input[type="button"]{
color: rgb(255, 255, 255);
font-weight: bold;
letter-spacing: 1.5px;
@@ -68,16 +66,16 @@ form input[type="submit"]{
/* Hover */
form label input:hover{
.auth_form label input:hover{
border: 2px solid rgb(1, 197, 246);
}
form label input:focus{
.auth_form label input:focus{
border: 2px solid rgb(1, 197, 246);
box-shadow: 0 0 5px #719ece62;
}
form input[type="submit"]:hover{
.auth_form input[type="submit"]:hover{
border: 2px solid rgb(7, 130, 200);
background-color: rgb(7, 130, 200);
}