Search/static/search.html
2024-03-30 18:00:43 +01:00

26 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search with TailsGo</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="settings-search-div settings-search-div-search">
<!-- Assuming you have specific styles for this in your CSS -->
</div>
<form action="/search" class="search-container" method="post" autocomplete="off">
<h1>TailsGo</h1>
<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>
</div>
<div class="search-button-wrapper">
<button name="t" value="text" type="submit">Search Text</button>
<button name="t" value="image" type="submit">Search Images</button>
</div>
</form>
</body>
</html>