Create waschmarken as clone of webpnp

This commit is contained in:
Dominic Zimmer
2020-07-17 19:18:17 +02:00
commit cb934e8220
16 changed files with 1179 additions and 0 deletions

30
ui.html Normal file
View File

@@ -0,0 +1,30 @@
<!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>