This repository has been archived on 2024-07-05. You can view files and clone it, but cannot push or open issues or pull requests.
PrivacyHex/views/index.html

32 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>PrivacyHex</title>
<link rel="stylesheet" href={{ GetAsset "theme.css" }}>
<link rel="stylesheet" href={{ GetAsset "index.css" }}>
<link rel="stylesheet" href={{ GetAsset "icon.css" }}>
</head>
<body>
<main>
<div class="logo">
<span class="logo-text">Privacy</span>
<span class="logo-hex icon">&#xec02;</span>
</div>
<form action="/goto" method="get" class="flex-row">
<div class="search-box flex-row">
<div class="search">
<input type="text" name="q" placeholder="Search query or URL">
</div>
<div class="search-clear">
<input type="reset" id="clear" class="icon" value="&#xeb55;" aria-label="Clear">
</div>
</div>
<div class="search-submit">
<input type="submit" class="icon" value="&#xeb1c;" aria-label="Search">
</div>
</form>
</main>
</body>
</html>