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

31 lines
881 B
HTML
Raw Normal View History

2023-10-13 13:44:47 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PrivacyHex</title>
2023-10-18 14:33:57 +03:00
<link rel="stylesheet" href={{ GetAsset "theme.css" }}>
<link rel="stylesheet" href={{ GetAsset "index.css" }}>
<link rel="stylesheet" href={{ GetAsset "icon.css" }}>
2023-10-13 13:44:47 +03:00
</head>
<body>
<main>
<div class="logo">
<span class="logo-text">Privacy</span>
2023-10-18 14:33:57 +03:00
<span class="logo-hex icon">&#xec02;</span>
2023-10-13 13:44:47 +03:00
</div>
<form action="/goto" method="get">
<label>
<input type="text" name="q" placeholder="Search query or URL">
</label>
2023-10-18 14:33:57 +03:00
<label class="input-clear">
<input type="reset">
2023-10-13 13:44:47 +03:00
</label>
2023-10-18 14:33:57 +03:00
<label class="input-submit">
2023-10-13 13:44:47 +03:00
<input type="submit">
</label>
</form>
</main>
</body>
</html>