From a736c3019e04e50d8ba5941e108676e2d24c41df Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 31 Oct 2023 18:13:40 +0000 Subject: [PATCH] add password form to account, fix form input grid styling --- account.html | 14 ++++++++++++++ css/form.css | 5 ++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/account.html b/account.html index a9a37df..ba7ce45 100644 --- a/account.html +++ b/account.html @@ -9,6 +9,7 @@ + @@ -62,6 +63,19 @@

VMID Range:

Nodes:

+
+

Password

+
+
+ + + + + + +
+
+

Cluster Resources

diff --git a/css/form.css b/css/form.css index 57f7861..cd1422f 100644 --- a/css/form.css +++ b/css/form.css @@ -1,5 +1,4 @@ .input-grid { - float: left; display: grid; column-gap: 10px; row-gap: 5px; @@ -34,6 +33,10 @@ fieldset > *:last-child { margin-bottom: 8px; } +fieldset > .input-grid { + float: left; +} + body:not(:-moz-handler-blocked) fieldset { display: table-cell; }