24 lines
849 B
HTML
24 lines
849 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="theme-color" content="#2e3440">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<title>Text Proxy</title>
|
|
<link href="site.css" rel="stylesheet">
|
|
<link rel="icon" type="image/png" href="/favicon.png" size="64x64">
|
|
<link rel="icon" type="image/png" href="/favicon@2x.png" size="128x128">
|
|
<link rel="icon" type="image/png" href="/favicon@3x.png" size="192x192">
|
|
</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>
|