-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.63 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kick Multi Viewer</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="images/icon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="header">
<h1>Kick Multi Viewer</h1>
<p class="made-by">Made by Sleettz</p>
</div>
<div class="input-container">
<input type="text" id="kickUsername" placeholder="Enter Kick Username" onkeypress="handleKeyPress(event)">
<button onclick="addStream()">Add Stream</button>
</div>
<div id="streamsContainer" class="streams-container">
<!-- Streams will be embedded here -->
</div>
<div id="notification" class="notification"></div>
</div>
<div class="mode-switch">
<label class="switch">
<input type="checkbox" id="modeToggle" onclick="toggleMode()">
<span class="slider round"></span>
</label>
<span id="modeText">Dark Mode</span>
</div>
<div class="settings">
<h2>Settings</h2>
<div class="setting">
<label for="streamSize">Stream Size:</label>
<select id="streamSize" onchange="updateStreamSize()">
<option value="300px">Small</option>
<option value="400px">Medium</option>
<option value="500px">Large</option>
</select>
</div>
</div>
<script src="script.js"></script>
</body>
</html>