SimpleTube/resources/player.html
2023-10-26 17:35:34 +00:00

21 lines
527 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{CSS_HEADER}
<title>Document</title>
</head>
<body>
<div id="videoContainer">
<video id="videoPlayer" controls muted="muted" autoplay poster="{VIDEO_THUMBNAIL}">
<source src="/video?q={VIDEOID}" type="video/mp4">
</video>
</div>
<hr>
<h2 id="title">{VIDEO_TITLE}</h2>
<p id="description">{VIDEO_DESCRIPTION}</p>
</body>
</html>