summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-10-27 15:34:55 +0500
committerilotterytea <iltsu@alright.party>2025-10-27 15:34:55 +0500
commit3f488ebef743cd48373359ab1f1e59d4f2639222 (patch)
tree01b4ae0124d984931eb8aaecc24a64614d824d5a /index.html
parent8a2b0b0993bb48e2cc9ece10f5d272bd5acfe806 (diff)
feat: perplex chatHEADmaster
Diffstat (limited to 'index.html')
-rw-r--r--index.html104
1 files changed, 50 insertions, 54 deletions
diff --git a/index.html b/index.html
index 32f47d7..2d528ec 100644
--- a/index.html
+++ b/index.html
@@ -1,67 +1,63 @@
<!DOCTYPE html>
<html>
- <head>
- <title>ilotterytea&apos;s chat widget</title>
- <link rel="stylesheet" href="/style.css">
- </head>
- <body class="center">
- <h1><img src="/logo.png" alt> ilotterytea&apos;s chat widget</h1>
- <p>a simple, client-side, lightweight Twitch chat for your streams.</p>
- <form action="/twitch.html" method="get">
+
+<head>
+ <title>ilotterytea&apos;s chat widget</title>
+ <link rel="stylesheet" href="/style.css">
+</head>
+
+<body class="center">
+ <h1><img src="/logo.png" alt> ilotterytea&apos;s chat widget</h1>
+ <p>a simple, client-side, lightweight Twitch chat for your streams.</p>
+ <form action="/twitch.html" method="get">
+ <div>
+ <label for="channel">Channel name:</label>
+ <input type="text" name="channel" id="channel" placeholder="forsen">
+ </div>
+ <div>
+ <label for="fetchrecentmessages">Fetch recent messages:</label>
+ <input type="checkbox" name="fetchrecentmessages" id="fetchrecentmessages" value="1">
+ </div>
+ <div>
+ <label for="thirdpartyemotes">Enable Third-party emotes
+ <i>&lpar;FFZ, BTTV, 7TV, TinyEmotes&rpar;</i>:</label>
+ <input type="checkbox" name="thirdpartyemotes" id="thirdpartyemotes" value="1" checked>
+ </div>
+ <div>
+ <label for="membership">Show joined/parted chatters:</label>
+ <input type="checkbox" name="membership" id="membership" value="1">
+ </div>
+ <div>
+ <label for="perplex">Perplex chat:</label>
+ <input type="checkbox" name="perplex" id="perplex" value="1">
+ </div>
+ <details>
+ <summary>More...</summary>
+
<div>
- <label for="channel">Channel name:</label>
- <input type="text" name="channel" id="channel"
- placeholder="forsen">
+ <label for="ircserver">IRC server:</label>
+ <input type="url" name="ircserver" id="ircserver" placeholder="wss://irc-ws.chat.twitch.tv">
</div>
+
<div>
- <label for="fetchrecentmessages">Fetch recent messages:</label>
- <input type="checkbox" name="fetchrecentmessages"
- id="fetchrecentmessages"
- value="1">
+ <label for="ircuser">IRC username:</label>
+ <input type="name" name="ircuser" id="ircuser" placeholder="justinfan12345">
</div>
+
<div>
- <label for="thirdpartyemotes">Enable Third-party emotes
- <i>&lpar;FFZ, BTTV, 7TV, TinyEmotes&rpar;</i>:</label>
- <input type="checkbox" name="thirdpartyemotes"
- id="thirdpartyemotes"
- value="1" checked>
+ <label for="ircpass">IRC password:</label>
+ <input type="password" name="ircpass" id="ircpass" placeholder="65432">
</div>
+
<div>
- <label for="membership">Show joined/parted chatters:</label>
- <input type="checkbox" name="membership" id="membership"
- value="1">
+ <label for="tinyemotesinstances">TinyEmotes
+ instances:</label>
+ <textarea name="tinyemotesinstances" id="tinyemotesinstances" placeholder="1 URL per line"></textarea>
</div>
- <details>
- <summary>More...</summary>
-
- <div>
- <label for="ircserver">IRC server:</label>
- <input type="url" name="ircserver" id="ircserver"
- placeholder="wss://irc-ws.chat.twitch.tv">
- </div>
-
- <div>
- <label for="ircuser">IRC username:</label>
- <input type="name" name="ircuser" id="ircuser"
- placeholder="justinfan12345">
- </div>
-
- <div>
- <label for="ircpass">IRC password:</label>
- <input type="password" name="ircpass" id="ircpass"
- placeholder="65432">
- </div>
- <div>
- <label for="tinyemotesinstances">TinyEmotes
- instances:</label>
- <textarea name="tinyemotesinstances"
- id="tinyemotesinstances"
- placeholder="1 URL per line"></textarea>
- </div>
+ </details>
+ <button type="submit">Generate</button>
+ </form>
+</body>
- </details>
- <button type="submit">Generate</button>
- </form>
- </body>
</html> \ No newline at end of file