diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -4,6 +4,18 @@ <title>webberino</title> </head> <body> - <h1>xd</h1> + <div class="tabs" id="main-window-tabs"></div> + <div class="messages" id="window-messages"> + <noscript>JavaScript is required.</noscript> + </div> + <div class="input-field" id="main-window-input-field"></div> </body> + <script src="/scripts/chat.js"></script> + <script> + window.onload = () => { + const client = new TwitchIRCClient("wss://irc-ws.chat.twitch.tv", "justinfan65432", "12345"); + client.connect(); + client.join("forsen"); + }; + </script> </html>
\ No newline at end of file |
