summaryrefslogtreecommitdiff
path: root/twitch.html
blob: ca9db0a4e32364e418b44a90ef904f21b7b853db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
    <head>
        <title>chat widget</title>
    </head>
    <body class="messages" id="messages">
        <noscript>
            JavaScript is required.
        </noscript>
    </body>

    <script src="/scripts/chat.js"></script>
    <script>
        window.addEventListener("load", () => {
            connectToChat("wss://irc-ws.chat.twitch.tv", "justinfan12345", "65432", "forsen");
        });
    </script>
</html>