mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 15:15:28 +00:00
24 lines
700 B
HTML
24 lines
700 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>WebRTC Example</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>WebRTC Example</h1>
|
|
<h2>Local ID</h2>
|
|
<p id="localId"></p>
|
|
<h2>Send an offer through signaling</h2>
|
|
<input type="text" id="offerId" placeholder="remote ID" disabled>
|
|
<input type="button" id="offerBtn" value="Offer" disabled>
|
|
<br>
|
|
<h2>Send a message through DataChannel</h2>
|
|
<input type="text" id="sendMsg" placeholder="message" disabled>
|
|
<input type="button" id="sendBtn" value="Send" disabled>
|
|
<br>
|
|
</body>
|
|
</html>
|
|
|