Webchance/static/app.js
Gian Breitenstein 5cae25cb2f
All checks were successful
Release / publish (push) Successful in 59s
added winners
2024-09-26 17:46:12 +02:00

27 lines
806 B
JavaScript

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;
try {
const response = await fetch(url);
const content = await response.text()
document.getElementById("won").innerText=content
getWinners()
} catch (error) {
console.error(error.message);
}
}
async function getWinners() {
const url = "/winners"
try {
const response = await fetch(url);
const content = await response.text()
document.getElementById("winners").innerText=content
} catch (error) {
console.error(error.message);
}
}