Forgot password

This commit is contained in:
2024-11-26 17:42:46 +00:00
parent 964f3bfb30
commit 1ed1ad09af
6 changed files with 193 additions and 14 deletions

View File

@@ -1,28 +1,20 @@
main {
/*display: grid;
grid-template-areas:
"header header header"
". form ."
". . .";
grid-template-rows: auto 1fr 1fr;
place-items: center;
*/
padding: 1rem;
}
.LoginForm {
grid-area: form;
display: inline-grid;
grid-template-areas:
"errors errors"
"emailLabel emailControl"
"passLabel passControl"
". resetLink"
"button button";
gap: 0.5rem 3rem;
}
.LoginForm .Errors {
color: darkred;
}
.LoginForm .Errors {
color: darkred;
background-color: var(--foregroundColor);
}