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