2022-12-07 22:46:22 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang='en'>
|
|
|
|
<head>
|
|
|
|
<meta charset='UTF-8'/>
|
|
|
|
<meta content='width=device-width, initial-scale=1.0' name='viewport'/>
|
|
|
|
<title>JS-Waku light chat</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h2>Status</h2>
|
2022-12-08 20:33:06 +00:00
|
|
|
<div id='status'>Connecting... | Connected | Disconnected</div>
|
2022-12-07 22:46:22 +00:00
|
|
|
|
|
|
|
<h2>Local Peer Id</h2>
|
|
|
|
<div id='peer-id'></div>
|
|
|
|
|
|
|
|
<h2>Remote Peer Id</h2>
|
|
|
|
<div id='remote-peer-id'></div>
|
|
|
|
|
|
|
|
<h2>Remote peer's multiaddr</h2>
|
|
|
|
<div id='remote-multiaddr'></div>
|
|
|
|
|
|
|
|
<div id="messages"></div>
|
|
|
|
|
|
|
|
<div class="inputArea">
|
|
|
|
<input type="text" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="controls">
|
|
|
|
<button>Send</button>
|
|
|
|
<button>Exit chat</button>
|
|
|
|
</div>
|
|
|
|
|
2022-12-08 20:33:06 +00:00
|
|
|
<script src="//cdn.jsdelivr.net/npm/protobufjs@7.X.X/dist/protobuf.min.js"></script>
|
2022-12-07 22:46:22 +00:00
|
|
|
<script type='module' src="./index.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|