chat-client/index.html

18 lines
405 B
HTML
Raw Normal View History

2019-03-24 17:22:44 +11:00
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
2019-04-09 19:18:47 +10:00
<title>Connect</title>
2019-03-24 17:22:44 +11:00
<script src="index.js"></script>
2019-04-09 19:18:47 +10:00
<script src="scripts.js"></script>
2019-03-24 17:22:44 +11:00
</head>
<body>
2019-04-09 19:18:47 +10:00
<p>Direct Connect:</p>
<p>
<input type="text" id="hostname"><br/>
<input type="text" id="port" value="22068"></br>
<button onclick="connect_direct()">
</p>
2019-03-24 17:22:44 +11:00
</body>
</html>