Add role based login and user management
This commit is contained in:
parent
f67bbdce78
commit
353dafc30d
4 changed files with 681 additions and 34 deletions
30
frontend-js/dist/style.css
vendored
30
frontend-js/dist/style.css
vendored
|
|
@ -26,6 +26,36 @@ body.ol2013 {
|
|||
flex-direction: column;
|
||||
}
|
||||
|
||||
.login-body {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(135deg, #f6f8fb 0%, #e8eef5 100%);
|
||||
}
|
||||
.login-card {
|
||||
width: min(380px, calc(100vw - 32px));
|
||||
background: #fff;
|
||||
border: 1px solid var(--ol-border);
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
|
||||
}
|
||||
.login-brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 16px 18px;
|
||||
background: var(--ol-blue);
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
}
|
||||
.login-form {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
padding: 18px;
|
||||
}
|
||||
.login-error {
|
||||
padding: 8px 10px;
|
||||
border: 1px solid #f3b5b8;
|
||||
}
|
||||
|
||||
/* Ribbon / Kopfband */
|
||||
.ribbon {
|
||||
background: var(--ol-blue);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue