27 lines
756 B
HTML
27 lines
756 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="./main.css">
|
|
|
|
<title>Scrabble online</title>
|
|
</head>
|
|
<body>
|
|
<form id="input-username">
|
|
<label for="input-text-username">Username: </label>
|
|
<input id="input-text-username" type="text">
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
|
|
<div id="client-id">Awaiting ClientID</div>
|
|
<div id="connection-state"></div>
|
|
|
|
<p><p>
|
|
|
|
<input type="button" value="play singleplayer" onclick="playSingleplayer()">
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |