webpnp/ui.html
Kai Vogelgesang e8900515bb Boilerplate
2020-04-16 17:15:17 +02:00

28 lines
478 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>leafblade Minecraft Server</title>
<meta charset="UTF-8"/>
</head>
<body>
this is the UI
<button id="test_api">Test API</button>
<script src="/static/renderer.js"></script>
<script>
document.getElementById("test_api").onclick = async function (e) {
let data = {foo: 'bar'};
await fetch('api', {
method: 'POST',
body: JSON.stringify(data),
})
};
</script>
</body>
</html>