diff options
author | LarsVomMars | 2020-10-10 12:05:53 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-10 13:17:58 +0200 |
commit | fdb9bba6c88a4fd8981c30bf8ea06aa0709db45e (patch) | |
tree | c8f0729351ebeb74622c2537e4e70075afc6bbfd /profile/public | |
parent | 4e9154b12ea3ddd9da32d2a4d1ebc30f13678c59 (diff) |
Dynamic question loading
Diffstat (limited to 'profile/public')
-rw-r--r-- | profile/public/index.html | 6 | ||||
-rw-r--r-- | profile/public/script.js | 14 | ||||
-rw-r--r-- | profile/public/style.css | 39 |
3 files changed, 55 insertions, 4 deletions
diff --git a/profile/public/index.html b/profile/public/index.html index 30f9de8..5fcee74 100644 --- a/profile/public/index.html +++ b/profile/public/index.html @@ -21,14 +21,12 @@ <fieldset> <legend>Steckbrief</legend> - <!-- TODO: Insert stuff lel --> - <!-- TODO: Consider autosave --> <button type="submit" class="pure-button pure-button-primary">Wohooo</button> </fieldset> </form> </main> - <script src="js/script.js"></script> + <script src="script.js"></script> </body> -</html>
\ No newline at end of file +</html> diff --git a/profile/public/script.js b/profile/public/script.js index e69de29..7c72b69 100644 --- a/profile/public/script.js +++ b/profile/public/script.js @@ -0,0 +1,14 @@ +const fs = document.querySelector("fieldset"); + +function appendQuestions(question) { + const field = document.createElement("input"); + field.name = question.id; + field.value = question.answer ?? ""; + field.placeholder = question.question; + fs.insertBefore(field, fs.querySelector("button")); +} + +fetch("api/questions") + .then((response) => response.json()) + .then((response) => response.forEach(appendQuestions)) + .catch(console.error); diff --git a/profile/public/style.css b/profile/public/style.css index e69de29..2e7b945 100644 --- a/profile/public/style.css +++ b/profile/public/style.css @@ -0,0 +1,39 @@ +html, +body { + padding: 0; + margin: 0; + height: 100%; + width: 100%; + background-color: #eec0c6; + background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); +} + +div { + background: white; +} + +main { + position: absolute; + max-height: 80%; + overflow-y: auto; + width: 30%; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + padding: 20px; + border-radius: 10px; + background: white; +} + +input, +button, +select { + width: 100%; +} + +@media only screen and (max-width: 600px) { + main { + width: calc(100% - 50px); + } +} |