Create templates/index.html
Browse files- templates/index.html +20 -0
templates/index.html
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<title>Proxy Search</title>
|
| 6 |
+
<style>
|
| 7 |
+
body { font-family: sans-serif; margin: 1rem; }
|
| 8 |
+
form { margin-bottom: 1rem; }
|
| 9 |
+
input[type=text] { width: 70%; padding: 0.5rem; }
|
| 10 |
+
button { padding: 0.5rem 1rem; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<h1>Proxy Search</h1>
|
| 15 |
+
<form action="/go" method="post">
|
| 16 |
+
<input type="text" name="q" placeholder="Search or enter URL" />
|
| 17 |
+
<button type="submit">Go</button>
|
| 18 |
+
</form>
|
| 19 |
+
</body>
|
| 20 |
+
</html>
|