webpnp/index.html
2020-04-17 03:35:55 +02:00

28 lines
523 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>leafblade Minecraft Server</title>
<meta charset="UTF-8"/>
</head>
<body>
this is the base site
<br>
<input id="username" type="text" placeholder="Joe"/>
<button id="btn_register">idk</button>
<script>
document.getElementById("btn_register").onclick = function (e) {
let username = document.getElementById("username");
window.location.replace(`register/${encodeURIComponent(username.value || username.placeholder)}`)
};
</script>
</body>
</html>