From 198a580292ee6b1d15d4c7409bd84ca8e57c9ef2 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sun, 4 Apr 2021 15:30:26 +0200 Subject: simple forms with simple encryption this depends on age stuffed into web assembly, which is not yet part of this repository. The idea is to have a web app (which is a static html page + js / wasm) and a set of (optionally encrypted) json files which describe surveys, which the main site can download on demand. --- site/index.html | 238 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ site/style.css | 21 +++++ 2 files changed, 259 insertions(+) create mode 100644 site/index.html create mode 100644 site/style.css diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..7fef9e9 --- /dev/null +++ b/site/index.html @@ -0,0 +1,238 @@ + + + test + + + +
+ + + diff --git a/site/style.css b/site/style.css new file mode 100644 index 0000000..026c1cc --- /dev/null +++ b/site/style.css @@ -0,0 +1,21 @@ + + +h1 { + font-size: 30 pt; +} + +html { + background-color: white; +} + +body { + background-color: white; + max-width: 30em; + margin: auto; + padding: 2em; + box-shadow: 0 0 3em lightgray; +} + +li { + list-style-type: none; +} -- cgit v1.2.3