Add user management

This commit is contained in:
2020-10-31 11:46:02 +01:00
parent 1f91686d25
commit 762d43c330
5 changed files with 185 additions and 15 deletions

View File

@@ -15,6 +15,7 @@
border: 0;
background-color: #c4e1ff;
font-weight: bold;
font-size: small;
}
input[type="submit"].delete {
@@ -64,6 +65,32 @@
border: 1px solid gray;
}
.dialog, .error {
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%, -50%);
border: solid lightgrey;
padding: 1em;
border-radius: .5em;
}
.dialog label {
display: flex;
margin-bottom: 1em;
align-items: center;
}
.form-content {
display: grid;
grid-gap : 20px;
grid-template-columns: 100px 1fr;
}
.form-controls {
margin-top: 1em;
text-align: right;
}
body {
font-family: sans-serif;
margin-left: 200px