diff options
author | Marvin Borner | 2021-01-29 14:42:34 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-29 14:42:34 +0100 |
commit | 4482d4ca8a69dcfa3b082436a02cf25ee0870be0 (patch) | |
tree | 00c26423aefd7843499aba519432de9760cb6c59 /profile/public | |
parent | aec1e8f2cd4c0fdedd200fc30094587c0834d372 (diff) |
blabla
Diffstat (limited to 'profile/public')
-rw-r--r-- | profile/public/script.js | 9 | ||||
-rw-r--r-- | profile/public/style.css | 1 | ||||
-rw-r--r-- | profile/public/user.js | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/profile/public/script.js b/profile/public/script.js index db9a277..a115b64 100644 --- a/profile/public/script.js +++ b/profile/public/script.js @@ -62,6 +62,7 @@ function appendQuestions(question) { field.value = question.answer || ""; field.placeholder = question.question; field.type = question.type; + field.maxLength = 100; if (question.type === "file") { imageID = question.id; field.accept = "image/*"; @@ -95,8 +96,12 @@ form.addEventListener("submit", async (evt) => { const resp = await fetch("api/answer", { method, body, headers: { "Content-Type": "application/json" } }); const res = await resp.json(); - if (!res.success) alert("An error occurred"); - else init = false; + if (!res.success) { + alert("An error occurred"); + } else { + init = false; + alert("Okidoki, danke!"); + } }); saveBtn.addEventListener("click", (e) => { diff --git a/profile/public/style.css b/profile/public/style.css index becb428..bb7af3c 100644 --- a/profile/public/style.css +++ b/profile/public/style.css @@ -139,7 +139,6 @@ img { z-index: 10; position: absolute; display: none; - max-height: 600px; max-width: 600px; left: 50%; top: 50%; diff --git a/profile/public/user.js b/profile/public/user.js index 963904c..936118e 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -164,6 +164,7 @@ function addChar(char) { }); const inp = document.createElement("input"); const btn = document.createElement("button"); + btn.classList.add("pure-button", "pure-button-primary"); btn.textContent = "Senden"; if (char.hasOwnProperty("txt")) { @@ -181,6 +182,7 @@ function addChar(char) { headers: { "Content-Type": "application/json" }, body, }); + alert("Okidoki, danke!"); }); const div = document.createElement("div"); div.style.display = "flex"; |