diff options
Diffstat (limited to 'profile/public/script.js')
-rw-r--r-- | profile/public/script.js | 9 |
1 files changed, 7 insertions, 2 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) => { |