runic-client/index.html

35 lines
997 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Play Runic</title>
<link rel="stylesheet" href="css/title.css">
</head>
<body>
<div class="center">
<h1 class="name">
RUNIC
</h1>
<input id="runic_username" class="username" placeholder="Username" maxlength="16"><br>
<input type="button" class="play" onclick="play()" value="PLAY">
</div>
<script>
var usernameinput = document.getElementById("runic_username");
function play() {
var username = usernameinput.value;
if (username != "") {
window.location = "game.html" + "?name=" + username;
}
else {
window.location = "game.html";
}
}
usernameinput.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
play();
}
});
</script>
</body>
</html>