You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
video-player/public/index.html

77 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PI Video Player</title>
<style>
/* #videos {
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: column;
width: fit-content;
margin: 0 auto;
}
#videos button {
margin: 2px;
} */
</style>
</head>
<body>
<h1>Upload a file and it should start playing</h1>
<form ref='uploadForm'
id='uploadForm'
action='/upload'
method='post'
encType="multipart/form-data">
<input type="file" name="file" />
<input type='submit' value='Upload!' />
</form>
<h2>Background video</h2>
<div id="videos"></div>
<div>Currently selected video:</div>
<div id="selectedvideo"></div>
<h2>Overlay video</h2>
<div id="overlayvideos"></div>
<button id="play" onclick="fetch(`/playoverlay`, { method: 'POST' });">Play Overlay now</button>
<div>Currently selected video:</div>
<div id="overlayvideo"></div>
<h2>Delete videos</h2>
<div id="deletevideos"></div>
<h2>Projector status 1</h2>
<div id="projectorstatus1"></div>
<h2>Projector status 2</h2>
<div id="projectorstatus2"></div>
<button onclick="fetch(`/startprojector`, { method: 'POST' });">Start projectors</button>
<button onclick="fetch(`/stopprojector`, { method: 'POST' });">Stop projectors</button>
<h2>Relay 1</h2>
<div id="relay1"></div>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/on/19`);">On relay 1</button>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/off/19`);">Off relay 1</button>
<h2>Relay 2</h2>
<div id="relay2"></div>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/on/13`);">On relay 2</button>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/off/13`);">Off relay 2</button>
<h2>Relay 3</h2>
<div id="relay3"></div>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/on/6`);">On relay 3</button>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/off/6`);">Off relay 3</button>
<h2>Relay 4</h2>
<div id="relay4"></div>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/on/5`);">On relay 4</button>
<button onclick="fetch(`https://steady.bpfilip.dk/relay/off/5`);">Off relay 4</button>
<script src="/main.js"></script>
</body>
</html>