metasearch/index.html

55 lines
2.3 KiB
HTML
Raw Normal View History

2023-10-14 12:41:06 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2024-07-30 09:37:38 +00:00
<title>TROM Search</title>
2023-10-14 12:41:06 +00:00
<meta charset="UTF-8">
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1">
2024-07-30 09:37:38 +00:00
<meta name="theme-color" content="#bc5151">
<link rel="shortcut icon" href="img/favicon.png">
2023-12-14 15:38:09 +00:00
<link rel="search" title="TROM Search" type="application/opensearchdescription+xml" href="opensearchdescription.xml">
2024-07-30 09:37:38 +00:00
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/theme.css">
<script type="module" src="js/index.js"></script>
2023-10-14 12:41:06 +00:00
</head>
<body>
2024-07-30 09:37:38 +00:00
<div id="main">
<div id="about">
<img src="img/about.png">
<p class="description">This is a <a href="https://www.trade-free.org">trade-free</a> tool, part of the <a href="https://trom.tf">trom.tf</a> suite of trade-free services.</p>
</div>
<main>
<form id="search">
<div class="search-inputs">
<input name="query" type="text" placeholder="Query">
<input type="submit" value="Search">
</div>
<div class="search-radio-buttons">
<div class="category">
<input type="radio" id="search-category-all" name="category" value="all" checked>
<label for="search-category-all">All</label>
</div>
<div class="category">
<input type="radio" id="search-category-images" name="category" value="images">
<label for="search-category-images">Images</label>
</div>
<div class="category">
<input type="radio" id="search-category-news" name="category" value="news">
<label for="search-category-news">News</label>
</div>
<div class="category">
<input type="radio" id="search-category-videos" name="category" value="videos">
<label for="search-category-videos">Videos</label>
</div>
<div class="category">
<input type="radio" id="search-category-files" name="category" value="files">
<label for="search-category-files">Files</label>
</div>
</div>
</form>
</main>
<p id="status"></p>
2023-10-14 12:41:06 +00:00
</div>
</body>
</html>