31 lines
1009 B
HTML
31 lines
1009 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>EPUB Search</title>
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<nav>
|
|
<a href="/">Search</a>
|
|
<a href="/books">Books</a>
|
|
<a href="/admin">Admin</a>
|
|
</nav>
|
|
<h1>EPUB Search</h1>
|
|
<form hx-post="/search" hx-target="#results" hx-swap="innerHTML">
|
|
<label for="query">Search</label>
|
|
<textarea id="query" name="query" rows="4" required></textarea>
|
|
<label class="check">
|
|
<input type="checkbox" name="rerank" value="true" {% if config.rerank.enabled %}checked{% endif %}>
|
|
Rerank
|
|
</label>
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
<section id="results"></section>
|
|
</main>
|
|
</body>
|
|
</html>
|