-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
50 lines (38 loc) · 1.15 KB
/
index.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
require_once("config.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Bangs</title>
<link rel="stylesheet" href="./assets/style.css">
<link rel="stylesheet" href="./assets/fonts.css">
</head>
<body>
<div class="container">
<div id="logo">
<h1>Open Bangs</h1>
</div>
<form action="search.php" method="get">
<input type="text" name="q" required autofocus>
<select name="upstream">
<?php
foreach($upstreams as $name => $data) {
print("<option value=\"$name\">$name</option>");
}
?>
</select>
<input type="submit" value="Search">
</form>
<hr>
<a href="./list-of-bangs.php">List of bangs</a>
</div>
<!-- Fork me on Github ribbon -->
<a href="https://github.com/open-bangs/server" id="githubForkMeRibbon">
<img style="position: absolute; top: 0; right: 0; border: 0; width: 149px; height: 149px;" src="https://aral.github.io/fork-me-on-github-retina-ribbons/[email protected]"
alt="Fork me on GitHub">
</a>
</body>
</html>