-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (67 loc) · 2.68 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<!-- <html class="no-js"> -->
<!--<![endif]-->
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/main.css">
<script src="./js/main.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Simulstream</title>
<meta name="description" content="Play multiple streams at once from different streaming platforms!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Simulstream" property="og:title">
<meta content="Play multiple streams at once from different streaming platforms!" property="og:description">
<meta content="Simulstream" property="og:site_name">
<meta name="theme-color" content="#6600FF">
</head>
<body>
<h1>Simulstream</h1>
<div id="column1" title="Enter a stream/video link">
<span id="twitchSpan">
<input id="twitch-input" placeholder="Enter Youtube Stream Link or Twitch Link/Channel Name">
</span>
</div>
<div id="bottom">
<br>
<br>
<br>
<div style="text-align: center">
Streams:
<p id="StreamText">None</p>
</div>
<button id="add-button" type="button" onclick="AddStream()" title="Adds a stream to the list of multi streams">Add Stream</button>
<br>
<button id="clear-button" type="button" onclick="ClearStreams()" title="Clears the list of streams to watch">Clear Stream List</button>
<br>
<button id="watch-button" type="button" onclick="WatchStreams()" title="Opens the multi stream link">Watch Streams</button>
<br>
<div id="layout-div">
Layout Options
</div>
<span id="switch-span" title="Switches the location of the stream & chat" class="container">
<input type="checkbox" id="switch-box">
<label>Switch Streams and Chat</label>
</span>
<br>
<span id="align-span" title="Default: Stream on left, chat on right">
<input type="checkbox" id="horizontal-box">
<label>Horizontal Layout</label>
</span>
</div>
<footer id="footer">
<p>
Created By: <a href="https://github.com/FromDarkHell">FromDarkHell</a>
Hosted On: <a href="https://github.com/FromDarkHel/Simulstream">Github</a>
</p>
</footer>
</body>
</html>