Search/templates/search.html

28 lines
1.1 KiB
HTML
Raw Normal View History

2024-03-27 20:30:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-04-07 13:48:25 +00:00
<title>Search with Ocásek</title>
2024-03-30 17:00:43 +00:00
<link rel="stylesheet" href="/static/css/style.css">
2024-03-27 20:30:19 +00:00
</head>
<body>
2024-03-30 17:00:43 +00:00
<div class="settings-search-div settings-search-div-search">
<a class="material-icons-round clickable" href="/settings">tune</a>
2024-03-30 17:00:43 +00:00
</div>
2024-03-27 20:30:19 +00:00
<form action="/search" class="search-container" method="post" autocomplete="off">
2024-04-07 13:48:25 +00:00
<h1>Ocásek</h1>
2024-03-30 17:00:43 +00:00
<div class="wrapper">
<input type="text" name="q" autofocus id="search-input" placeholder="Type to search..." />
<button id="search-wrapper-ico" class="material-icons-round" name="t" value="text" type="submit">search</button>
<!-- <a id="clearSearch" class="material-icons-round">close</a> -->
2024-03-30 17:00:43 +00:00
</div>
2024-03-27 20:30:19 +00:00
<div class="search-button-wrapper">
2024-04-08 11:15:23 +00:00
<input type="hidden" name="p" value="1">
2024-03-30 17:00:43 +00:00
<button name="t" value="text" type="submit">Search Text</button>
<button name="t" value="image" type="submit">Search Images</button>
2024-03-27 20:30:19 +00:00
</div>
</form>
</body>
2024-03-28 07:19:29 +00:00
</html>