maotube/public/search/index.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2024-01-19 02:10:56 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaoTube</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
2024-01-19 02:48:01 +00:00
<header>
<h1>MaoTube</h1>
<nav>
<a href="/"><b>Home</b></a> -
<a href="/search">Search</a> -
<a href="/register">Register</a> -
<a href="/login">Login</a> -
<a href="/upload">Upload</a>
</nav>
<br>
<br>
</header>
2024-01-19 02:10:56 +00:00
<form method="GET" action="/search" target="_self">
<input type="text" name="query" placeholder="...">
<input type="submit" value="Search">
</form>
<br>
<div id="result">
<noscript>
<div class="mao-error">
<p>javascript not enabled</p>
<p>bottom text</p>
</div>
</noscript>
<div id="mao-error" class="mao-error hidden">
<p id="mao-error-message"></p>
<p>bottom text</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>