mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 15:15:28 +00:00
23 lines
625 B
HTML
23 lines
625 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Web Rtc Answerer</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="message-container">
|
|
<h1>Web Rtc</h1>
|
|
<div id="messages"></div>
|
|
</div>
|
|
<div id="message-input">
|
|
<p id="connection-state">Pending</p>
|
|
<textarea id="message-text-box"
|
|
placeholder="Send a message"
|
|
></textarea>
|
|
<br/>
|
|
<button id="send-message-button">Send</button>
|
|
</div>
|
|
<script src="/answerScript.js"></script>
|
|
</body>
|
|
</html>
|