From 400953548f17884e44dd84a32d05bf03bfa1aca0 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Tue, 17 Jan 2023 00:42:21 +0000 Subject: [PATCH] Add settings page Signed-off-by: Fred Boniface --- static/index.html | 5 ++-- static/js/settings.js | 0 static/settings.html | 50 ++++++++++++++++++++++++++++++++++++++ static/styles/settings.css | 9 +++++++ 4 files changed, 62 insertions(+), 2 deletions(-) create mode 100644 static/js/settings.js create mode 100644 static/settings.html create mode 100644 static/styles/settings.css diff --git a/static/index.html b/static/index.html index adbecbd..8f2ed07 100644 --- a/static/index.html +++ b/static/index.html @@ -24,6 +24,7 @@ @@ -34,13 +35,13 @@ - + OwlBoard Logo
- +
diff --git a/static/js/settings.js b/static/js/settings.js new file mode 100644 index 0000000..e69de29 diff --git a/static/settings.html b/static/settings.html new file mode 100644 index 0000000..fb7e8c4 --- /dev/null +++ b/static/settings.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + OwlBoard - Settings + + + + + +
+ +
+ + + + + OwlBoard Logo + +

Settings

+

Change your OwlBoard settings.

+

Any settings you apply will only apply to the device you are using now.

+ +

Settings are not yet fully implemented, some options won't apply properly yet.

+
+
+

Enter one CRS/3ALPHA code per box

+ +
+ +
+ +
+ +
+ +
+
+ + \ No newline at end of file diff --git a/static/styles/settings.css b/static/styles/settings.css new file mode 100644 index 0000000..43be0c5 --- /dev/null +++ b/static/styles/settings.css @@ -0,0 +1,9 @@ +.small-box{ + max-width: 100px; + height: 20px; + margin-top: 5px; + font-family: urwgothic, sans-serif; + text-align: center; + border-radius: 40px; + text-transform: uppercase; +} \ No newline at end of file