Files
webtorrent-desktop/index.html
Feross Aboukhadijeh 6e1af4543c fixes for electron
2016-02-16 17:47:00 -08:00

36 lines
878 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WebTorrent</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="index.css" charset="utf-8">
</head>
<body>
<main>
<header>
<h1>WebTorrent</h1>
</header>
<h2 id="logHeading" style="display: none">Log</h2>
<div class="speed"></div>
<div class="log"></div>
<h2>Start seeding</h2>
<p>
Drag-and-drop a file (or files) to begin sharing. Or choose a file:
<input type="file" name="upload" multiple>
</p>
<h2>Start downloading</h2>
<form>
<label for="torrentId">Download from a magnet link or info hash</label>
<input name="torrentId" placeholder="magnet:" required>
<button type="submit">Download</button>
</form>
</div>
<script>
require('./client')
</script>
</body>
</html>