Files
libdatachannel/examples/web/index.html
2020-05-31 20:34:13 +02:00

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>