-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (28 loc) · 897 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cider4OBS</title>
<script src="https://cdn.socket.io/4.7.5/socket.io.min.js"
integrity="sha384-2huaZvOR9iDzHqslqwpR87isEmrfxqyWOF7hr7BY6KG0+hVKLoEXMPUJw3ynWuhO"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body onload="startWebSocket();">
<div id="content">
<div id="mainbox">
<img id="albumimg" src="c4obs.png" width="84px" height="84px">
<div style="padding-left: 10px;">
<span id="title">Cider4OBS Connector | Connecting...</span><br>
<span id="artist">-/-</span><br>
<span id="album">-/-</span>
</div>
</div>
<div id="progressBg">
<div id="progressBar"></div>
</div>
</div>
<script src="connector.js"></script>
</body>
</html>