proxy / templates /index.html
dpv007's picture
Create templates/index.html
f961ffa verified
raw
history blame contribute delete
531 Bytes
<!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>