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