fingerproxy.html (870B) - raw
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <title>Finger Proxy</title> 6 <meta name="viewport" content="width=device-width" /> 7 <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐟</text></svg>"> 8 <meta name="description" content="a finger proxy"> 9 <style>#output { white-space: pre-wrap; font-family:monospace;}</style> 10 </head> 11 <body> 12 <form action="/" method="post"> 13 <label for="query">finger query: [user@host]</label><br> 14 <input 15 id="query" 16 name="query" 17 type="query" 18 value="" 19 /> 20 <input 21 class="button" 22 id="submit" 23 name="submit" 24 type="submit" 25 value="finger" 26 /> 27 </form> 28 29 <div id="output"> 30 {{ .Output }} 31 <span style="color:red;">{{.Error}} 32 </div> 33 34 </body> 35 </html>