initial rtc template, send text messages, doesn't work in firefox

This commit is contained in:
Abhinav Adduri 2017-05-24 13:16:38 -07:00
commit 002098f56e
5 changed files with 255 additions and 0 deletions

25
public/index.html Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!--<label>Your ID:</label><br/>-->
<button id="createChannel">Create a new channel</button>
<input id="joinChannel" placeholder="Join a channel"></input>
<textarea id="yourId" style="display: none"></textarea><br/>
<!--<label>Other ID:</label><br/>-->
<textarea id="otherId" style="display: none"></textarea>
<button id="connect">connect</button><br/>
<br /> <br />
<label>Enter Message:</label><br/>
<textarea id="yourMessage"></textarea>
<button id="send">send</button>
<pre id="messages"></pre>
<script src="bundle.js" charset="utf-8"></script>
</body>
</html>