-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 999 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
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Movie Night</title>
<link rel="shortcut icon" type="image/png"
href="/common/image/favicon.png">
<link rel="stylesheet" href="/common/style.css">
</head>
<body>
<div id="status">
⚠️ Please click the video to activate it, so that automatic
playing and pausing is enabled.
</div>
<video id="thevideo"
controls
preload="metadata"
width="100%"
crossorigin="anonymous"
src="/common/video/ready.webm">
</video>
<script src="index.js"></script>
<hr class="content-bottom">
<footer class="license">
This JavaScript client program is free software, licensed under
the GNU General Public License version 3 or later. The source code
and further details are available in the
<a href="https://github.com/octalsrc/parallel-playback">git
repository</a>.
</footer>
</body>
</html>