19 lines
481 B
HTML
19 lines
481 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Text Proxy</title>
|
|
<link href="site.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Text Proxy</h1>
|
|
<div class="main">
|
|
<form action="/cgi-bin/proxy.cgi" method="get">
|
|
<label for="u">Site</label>
|
|
<input name="u" id="u" type="url" autofocus required>
|
|
<input type="submit" value="Go">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|