31 lines
826 B
HTML
31 lines
826 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>
|
|
<button class="play" onclick="play()">
|
|
PLAY
|
|
</button>
|
|
</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";
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |