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