Files
BridgeSwarm/examples/whiteboard/index.html
T
2026-02-21 02:52:00 -05:00

27 lines
1001 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BridgeSwarm Whiteboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>BridgeSwarm Whiteboard</h1>
<p class="status" id="status">Load the extension, then join a topic. Open this page in another tab to draw together.</p>
<div class="row">
<input type="text" id="topic" placeholder="Topic (e.g. my-whiteboard)" value="bridge-swarm-whiteboard">
<button class="primary" id="btnJoin">Join</button>
<button class="danger" id="btnLeave" disabled>Leave</button>
<button class="secondary" id="btnClear" disabled>Clear board</button>
</div>
<div class="peers" id="peers">Peers: 0</div>
<div class="peers" id="publicKey">Your public key: (join to generate)</div>
<div class="canvas-wrap">
<canvas id="canvas" width="800" height="500"></canvas>
</div>
<script src="app.js"></script>
</body>
</html>