You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>WebRTC Text Chat</title>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <script src="./js/firebase.js"> </script>
- <script src="./js/data-connection.js"> </script>
- </head>
- <body>
- <table style="border-left: 1px solid black; border-right: 1px solid black; width: 100%;">
- <tr>
- <td>
- <div id="chat-output">
- </div>
- <input type="text" id="user-id" style="font-size: 1.2em; margin-right: 0; width: 5em;"
- placeholder="all" title="Enter user-id to send direct messages.">
- <input type="text" id="chat-input" style="font-size: 1.2em; margin-left: -.5em; width: 80%;"
- placeholder="chat message">
- </td>
- </tr>
- </table>
- <ul id="playlist">
- </ul>
- <!-- <script src="bundle.js"></script> -->
- <script src="./js/app.js"></script>
- </body>
- </html>
|