19 lines
573 B
HTML
19 lines
573 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>wasm testing</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form target="/play.html" method="GET">
|
|
<label for="server">Gateway server</label>
|
|
<input type="text" name="server" id="server" value="ws://localhost:3000/ws" required />
|
|
<br>
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" id="username" required />
|
|
<br>
|
|
<button>Launch!</button>
|
|
</form>
|
|
</body>
|
|
</html> |