34 lines
612 B
HTML
34 lines
612 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>leafblade Minecraft Server</title>
|
|
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
|
|
<body>
|
|
this is the base site
|
|
|
|
<a href="/newclient">Log in</a>
|
|
|
|
<br>
|
|
|
|
<input id="some_input" type="text" placeholder="dunno"/>
|
|
<button id="btn_dunno">idk</button>
|
|
|
|
<script>
|
|
document.getElementById("btn_dunno").onclick = async function (e) {
|
|
let text = document.getElementById("some_input").value;
|
|
let data = {"username": text};
|
|
|
|
await fetch('/newclient', {
|
|
method: 'POST',
|
|
body: JSON.stringify(data),
|
|
})
|
|
};
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|