From b9ac887eed09f4758dc49830a85795502a6009e7 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 8 Mar 2020 23:23:36 +0100 Subject: [PATCH] add the first form elements --- htdocs/admin.html | 46 +++++++++++++++++++++++++++++++++++++++++--- htdocs/css/admin.css | 12 ++++++++++++ 2 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 htdocs/css/admin.css diff --git a/htdocs/admin.html b/htdocs/admin.html index d9b8c66..6bcdd9e 100644 --- a/htdocs/admin.html +++ b/htdocs/admin.html @@ -4,12 +4,52 @@ OpenWebRX Settings - + ${header} -
- Admin-only area! +
+
+

Settings

+
+
+

+ General Settings +

+
+
+ + +
+
+ + +
+
+ +
+ + Elevation in meters above mean see level +
+
+
+ + +
+
+ +
Placeholder for a map widget to select receiver location
+
+
+ + +
+
+ + +
+
+
\ No newline at end of file diff --git a/htdocs/css/admin.css b/htdocs/css/admin.css new file mode 100644 index 0000000..4c153de --- /dev/null +++ b/htdocs/css/admin.css @@ -0,0 +1,12 @@ +@import url("openwebrx-header.css"); +@import url("openwebrx-globals.css"); + +/* expandable photo not implemented in admin area page */ +#webrx-top-photo-clip { + max-height: 67px; +} + +body { + background-color: #2e2e2e; + color: #DDD; +}