Implement account creation; add base class FormData to validate forms

This commit is contained in:
Lexi / Zoe 2021-09-16 16:10:45 +02:00
parent 23127dd193
commit 48925f283f
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
13 changed files with 392 additions and 96 deletions

View file

@ -158,13 +158,27 @@ table.bordered_table th {
/* --- Boxes --- */
.filter_options,
.edit_box,
.form_box,
.confirmation_box {
border: 1px solid #999999;
padding: 1rem;
margin: 1rem 0;
}
/* --- Detail boxes --- */
details {
margin: 1rem 0;
}
details > summary {
cursor: pointer;
}
details > p {
margin: 0.75rem 1rem;
font-family: monospace;
}
/* --- Detail columns --- */
input#show_details_checkbox {
margin-bottom: 1rem;
@ -174,8 +188,8 @@ input#show_details_checkbox:not(:checked) ~ table .detail_column {
display: none;
}
/* --- Edit box --- */
.edit_box p:last-child {
/* --- Form box --- */
.form_box p:last-child {
margin-bottom: 0;
}