Files
vrisingd/html/index.html
2022-05-24 13:51:16 -05:00

27 lines
659 B
HTML

<!DOCTYPE html>
<header>
<title>Rod Biren</title>
</header>
<body>
<p id="console"> Why Hello There</p>
<button id="update" type="button" onclick="update()">Update</button>
</body>
<script>
let update_button = document.getElementById("update")
let console = document.getElementById("console")
update_button.addEventListener("click",update)
async function update() {
update_button.disabled = true
console.innerText = "Updating"
let resp = await fetch("/api/update")
let body = await resp.text()
console.innerText = body
update_button.disabled = false
}
</script>
</html>