diff --git a/static/app.js b/static/app.js index 27e3197..c500ecb 100644 --- a/static/app.js +++ b/static/app.js @@ -1,27 +1,37 @@ +const LOOSE_MESSAGE = "im sorry, but you lost" +const WIN_MESSAGE = "congrats, you win" async function calcChanche() { const name = document.getElementById("name").value const chance = document.getElementById("Chance").value const mult = document.getElementById("Multiplicator").value - const url = "/random?chance="+chance+"&multiplicator="+mult+"&name="+name; + const url = "/random?chance=" + chance + "&multiplicator=" + mult + "&name=" + name; try { - const response = await fetch(url); - const content = await response.text() - document.getElementById("won").innerText=content - getWinners() + const response = await fetch(url); + const content = await response.text() + console.log(content); + + if (content == "true") { + document.getElementById("won").innerText = WIN_MESSAGE + } + else { + document.getElementById("won").innerText = LOOSE_MESSAGE + } + + getWinners() } catch (error) { - console.error(error.message); + console.error(error.message); } } async function getWinners() { const url = "/winners" try { - const response = await fetch(url); - const content = await response.text() + const response = await fetch(url); + const content = await response.text() - document.getElementById("winners").innerText=content + document.getElementById("winners").innerText = content } catch (error) { - console.error(error.message); + console.error(error.message); } } \ No newline at end of file diff --git a/static/index.html b/static/index.html index 9b9e167..45a192d 100644 --- a/static/index.html +++ b/static/index.html @@ -6,29 +6,12 @@ - +
-This is a paragraph.
+