44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="pl">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>Wyszukiwarka KB</title>
|
||
|
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<h1>Wyszukiwarka KB</h1>
|
||
|
|
<p class="subtitle">Wyszukiwanie w bazie wiedzy (Paperless + Gmail) — nie czat, tylko wyszukiwarka.</p>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<main>
|
||
|
|
<form id="search-form">
|
||
|
|
<input
|
||
|
|
type="text"
|
||
|
|
id="query"
|
||
|
|
name="q"
|
||
|
|
placeholder="Wpisz zapytanie…"
|
||
|
|
autocomplete="off"
|
||
|
|
autofocus
|
||
|
|
required
|
||
|
|
>
|
||
|
|
<button type="submit">Szukaj</button>
|
||
|
|
<label class="mode-toggle" title="Tryb debugowy: pomija filtr po streszczeniach dokumentów">
|
||
|
|
<input type="checkbox" id="mode-flat">
|
||
|
|
tryb flat (debug)
|
||
|
|
</label>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
<p id="error" class="error" hidden></p>
|
||
|
|
<div id="results"></div>
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<span id="sol-status" class="sol-status">SOLARIA: sprawdzanie…</span>
|
||
|
|
</footer>
|
||
|
|
|
||
|
|
<script src="/static/app.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|