Create waschmarken as clone of webpnp
This commit is contained in:
27
index.html
Normal file
27
index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user