webpnp/ui.html
2020-04-20 11:07:15 +02:00

31 lines
570 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>leafblade Minecraft Server</title>
<script src="https://raw.githack.com/SortableJS/Sortable/master/Sortable.js"></script>
<meta charset="UTF-8"/>
<style>
div {
/* border: 1px solid; */
margin: 5px;
}
</style>
</head>
<body>
<div id="content">
</div>
</body>
<script src="../static/renderer.js"></script>
<script>
fetch('api/draw', {
method: 'POST',
body: JSON.stringify({}),
});
</script>
</html>