maotube/public/watch/index.html

39 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2024-01-19 03:22:22 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaoTube</title>
<link rel="stylesheet" href="/style.css">
<script defer src="script.js"></script>
<script defer src="/header.js"></script>
2024-01-19 03:22:22 +00:00
</head>
<body>
<h1>MaoTube</h1>
<br>
<div id="result">
<div id="video-result">
<video id="video-player"></video>
<h1 id="video-title"></h1>
<p id="video-author"></p>
<br>
<hr>
<br>
<p id="video-description"></p>
</div>
2024-01-19 03:22:22 +00:00
<noscript>
<div class="mao-error">
<p>javascript not enabled</p>
<p>bottom text</p>
</div>
</noscript>
2024-01-19 03:22:22 +00:00
<div id="mao-error" class="mao-error hidden">
<p id="mao-error-message"></p>
<p>bottom text</p>
</div>
</div>
</body>
</html>