28 lines
478 B
HTML
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>
|