summaryrefslogtreecommitdiff
path: root/index.html
blob: de2f7a09b9f4ec162ec482bc8965c8ddef0a52cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
    <head>
        <title>webberino</title>
    </head>
    <body>
        <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>