28 lines
1019 B
HTML
28 lines
1019 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>BridgeSwarm – Chat</title>
|
||
<link rel="stylesheet" href="style.css">
|
||
</head>
|
||
<body>
|
||
<h1>BridgeSwarm – Chat</h1>
|
||
<p class="status" id="status">Load the extension, then join a topic. Open this page in another tab or device to chat.</p>
|
||
<div class="row">
|
||
<input type="text" id="topic" placeholder="Topic (e.g. my-chat-room)" value="bridge-swarm-demo">
|
||
<button class="primary" id="btnJoin">Join</button>
|
||
<button class="danger" id="btnLeave" disabled>Leave</button>
|
||
</div>
|
||
<div class="peers" id="peers">Peers: 0</div>
|
||
<div class="peers" id="publicKey">Your public key: (join to generate)</div>
|
||
<div class="row">
|
||
<input type="text" id="message" placeholder="Type a message..." disabled>
|
||
<button class="primary" id="btnSend" disabled>Send</button>
|
||
</div>
|
||
<div class="log" id="log"></div>
|
||
|
||
<script src="app.js"></script>
|
||
</body>
|
||
</html>
|