64 lines
1.8 KiB
HTML
64 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
|
<title>Waku Noise</title>
|
|
<link rel="apple-touch-icon" href="./favicon.png" />
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<link rel="icon" href="./favicon.ico" />
|
|
<style>
|
|
.progress {
|
|
color: #9ea13b;
|
|
}
|
|
|
|
.success {
|
|
color: #3ba183;
|
|
}
|
|
|
|
.error {
|
|
color: #c84740;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p><b>Waku Node Status:</b> <span id="waku-status">connecting...</span></p>
|
|
<p id="handshake-span">
|
|
<b>Handshake Status:</b> <span id="handshake-status">-</span>
|
|
</p>
|
|
|
|
<div id="qr-url-container">
|
|
<p>
|
|
<b>URL for handshake:</b>
|
|
<input
|
|
type="text"
|
|
id="qr-url"
|
|
style="display: inline-block; width: 250px"
|
|
readonly
|
|
/>
|
|
</p>
|
|
<button id="copy-url" style="width: 100px">Copy URL</button>
|
|
<button id="open-tab" style="width: 100px">Open in new</button>
|
|
</div>
|
|
|
|
<canvas id="qr-canvas"></canvas>
|
|
<!-- <a href="#" id="qr-url" style="display: none" target="_blank"
|
|
>Open QR code link in new window instead of scanning it.</a
|
|
> -->
|
|
|
|
<div id="chat-area" style="display: none">
|
|
<label for="nick-input">Your nickname</label>
|
|
<input id="nick-input" placeholder="Choose a nickname" type="text" />
|
|
<label for="text-input">Message text</label>
|
|
<input id="text-input" placeholder="Type your message here" type="text" />
|
|
<button id="send-btn" type="button" disabled>Send message</button>
|
|
<span id="sending-status"></span>
|
|
|
|
<h4 class="mu1">Messages</h4>
|
|
<ul id="messages"></ul>
|
|
</div>
|
|
|
|
<script src="./index.js"></script>
|
|
</body>
|
|
</html>
|