~dricottone/simple-chat

ref: v1.0.1 simple-chat/client/index.html -rw-r--r-- 419 bytes
c2c030fbDominic Ricottone Updates and reorganization 1 year, 13 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>
  <div id="pubkey-shown"></div>
  <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>