webpnp/index.html
2020-04-17 03:10:52 +02:00

28 lines
500 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").value;
window.location.replace(`/register/${encodeURIComponent(username)}`)
};
</script>
</body>
</html>