Replace MSAL and custom cookie auth with Microsoft.Identity.EntityFramework Also some UI redesign to accommodate different login experience.
16 lines
272 B
CSS
16 lines
272 B
CSS
.LoginForm {
|
|
grid-area: form;
|
|
display: inline-grid;
|
|
grid-template-areas:
|
|
"errors errors"
|
|
"emailLabel emailControl"
|
|
"passLabel passControl"
|
|
"confirmLabel confirmControl"
|
|
"button button";
|
|
gap: 0.5rem 3rem;
|
|
}
|
|
|
|
.LoginForm .Errors {
|
|
color: darkred;
|
|
}
|