NochuSearch/templates/index.html
2024-02-12 16:16:17 +00:00

16 lines
320 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nochu</title>
</head>
<body>
<h1>Welcome to Nochu</h1>
<p>Yet another search engine.</p>
<form action="/search" method="get">
<input type="text" name="query" required>
<button type="submit">Search</button>
</form>
</body>
</html>