~dricottone/simple-chat

ref: 11a6d556c1f8edfa3e9d65b2f4af90aceec1147b simple-chat/client/index.html -rw-r--r-- 387 bytes
11a6d556Dominic Ricottone Update port to 8080 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport">
  <title>Simple Chat Client</title>
  <script src="chat.js"></script>
</head>
<body>
  <input id="passwd-input" type="text">
  <button id="passwd-button">Update Key</button>
  <ul id="chat-room"></ul>
  <input id="chat-input" type="text">
  <button id="chat-button">Send</button>
</body>
</html>