mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 05:43:08 +00:00
51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
|
<title>Headless</title>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<link rel="apple-touch-icon" href="./favicon.png" />
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<link rel="icon" href="./favicon.ico" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="state"></div>
|
|
<div class="content">
|
|
<div class="header">
|
|
<h3>Status: <span id="status"></span></h3>
|
|
|
|
<details>
|
|
<summary>Peer's information</summary>
|
|
|
|
<h4>Content topic</h4>
|
|
<p id="contentTopic"></p>
|
|
|
|
<h4>Local Peer Id</h4>
|
|
<p id="localPeerId"></p>
|
|
|
|
<h4>Remote Peer Id</h4>
|
|
<p id="remotePeerId"></p>
|
|
</details>
|
|
</div>
|
|
|
|
<div id="messages"></div>
|
|
|
|
<div class="footer">
|
|
<div class="inputArea">
|
|
<input type="text" id="nickText" placeholder="Nickname" />
|
|
<textarea id="messageText" placeholder="Message"></textarea>
|
|
</div>
|
|
|
|
<div class="controls">
|
|
<button id="send">Send</button>
|
|
<button id="exit">Exit chat</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="./build/bundle.js"></script>
|
|
</body>
|
|
</html>
|