diff options
Diffstat (limited to 'mottovote/public')
-rw-r--r-- | mottovote/public/script.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mottovote/public/script.js b/mottovote/public/script.js index c8432c5..05ca940 100644 --- a/mottovote/public/script.js +++ b/mottovote/public/script.js @@ -46,7 +46,8 @@ function addListeners() { headers: { "Content-Type": "application/json" }, body: JSON.stringify(req), }); - console.log(await resp.text()); - + const res = await resp.text(); + if (res === "ok") location.reload(); + else alert(res); }); }
\ No newline at end of file |