tailscale/ssh/browser/index.html
Mihai Parparita 2cbcdc4ba8 wasm: implement Taildrop receiving
We need to make sure that there's a filesystem (implemented by BrowserFS
for now) and then things mostly work. File contents are sent to the JS
side as base64 encoded data, which may not work for large files.

Signed-off-by: Mihai Parparita <mihai@tailscale.com>
2022-06-08 22:55:55 -07:00

18 lines
440 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="dist/index.css" />
</head>
<body>
<div id="header">
<h1>Tailscale SSH</h1>
<div id="state">Loading…</div>
</div>
<div id="peers"></div>
<div id="files"></div>
<script src="dist/index.js"></script>
</body>
</html>