blob: a2cd48dbe8f3873fae3bddf273f5c189c605dd7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>chat widget</title>
<link rel="stylesheet" href="/style.css">
</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>
|