blob: 7ce74284a595bf6184402434cb7ded0459849f38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WolfEye</title>
<link rel="icon" href="/logo.svg">
<link rel="stylesheet" href="assets/main.css">
</head>
<body>
<div class="container">
<h1 class="title is-1" id="home-logo">
<img src="/logo.svg">
</h1>
<form action="search">
<input id="home-bar" class="search-input" autocomplete="off" spellcheck="false" type="text" name="q" placeholder="Search the Web...">
<br/>
<div class="searchbtn">
<input class="home-btn" id="home-submit" type="submit" value="WolfEye Search">
<input class="home-btn home-btn-last" onclick="if (document.getElementById('home-bar').value.trim() === '') return; location.href = '/lucky?q=' + encodeURI(document.getElementById('home-bar').value);" id="home-lucky" type="button" value="I'm Feeling Lucky">
</div>
<link rel="icon" href="/logo.svg">
</form>
</div>
</body>
</html>
|