SimpleTube/resources/player.html
2023-10-27 00:38:23 -05:00

33 lines
739 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="titleBar">
<h1><a href="/">Simpletube</a></h1>
</div>
<div id="videoContainer">
<video id="videoPlayer" controls autoplay poster="{VIDEO_THUMBNAIL}">
<source src="/video?q={VIDEOID}" type="video/mp4">
</video>
</div>
<hr>
<main>
<h2 id="title">{VIDEO_TITLE}</h2>
{CACHE_WARNING}
<div id="description">
<h2>Description: <br></h2>
<p id="description">{VIDEO_DESCRIPTION}</p>
</div>
</main>
</body>
</html>