mirror of
https://github.com/leoherzog/TorrentParts.git
synced 2026-01-24 12:18:03 -08:00
118 lines
3.6 KiB
HTML
118 lines
3.6 KiB
HTML
<!DOCTYPE html lang="en">
|
|
|
|
<head>
|
|
<title>Torrent Parts | Inspect and edit what's in your Torrent file or Magnet link</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Alata&display=swap" rel="stylesheet">
|
|
<script async src="https://kit.fontawesome.com/9ca49f101f.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1 id="logo">Torrent<span class="fad fa-magnet fa-fw"></span>Parts</h1>
|
|
<iframe src="https://ghbtns.com/github-btn.html?user=leoherzog&repo=TorrentParts&type=star&count=true" frameborder="0" scrolling="0" width="90" height="20" title="GitHub"></iframe>
|
|
</header>
|
|
|
|
<div id="startButtons">
|
|
<input id="magnet" type="text" placeholder="Enter Magnet URL" />
|
|
<input id="torrent" type="file" />
|
|
<label for="torrent">
|
|
<span class="fas fa-cloud-upload"></span> Upload Torrent
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div id="properties" style="display:none">
|
|
|
|
<button id="reset">
|
|
<span class="far fa-times fa-fw"></span>
|
|
</button>
|
|
|
|
<div id="download">
|
|
<button id="copyURL">
|
|
<span class="fas fa-share-alt fa-fw fa-2x" data-fa-transform="left-1"></span>
|
|
</button>
|
|
<button id="copyMagnet">
|
|
<span class="fas fa-magnet fa-fw fa-2x" data-fa-transform="down-1"></span>
|
|
</button>
|
|
<button id="downloadTorrent">
|
|
<span class="fas fa-file-download fa-fw fa-2x"></span>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="hash">Unique Hash</label>
|
|
<input id="hash" type="text" placeholder="" disabled/>
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="name"><span id="originalSourceIcon"></span>Torrent Name</label>
|
|
<input id="name" type="text" placeholder="Unspecified" />
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="created">Created</label>
|
|
<input id="created" type="datetime-local" disabled />
|
|
<label for="createdBy">UTC with</label>
|
|
<input id="createdBy" type="text" placeholder="Unspecified" disabled />
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="comment">Comment</label>
|
|
<input id="comment" type="text" placeholder="Unspecified" />
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="announce">Tracker URLs</label>
|
|
<button id="addTrackers">
|
|
<span class="fa-stack fa-2x">
|
|
<span class="fas fa-cloud fa-stack-2x"></span>
|
|
<span class="fas fa-plus fa-stack-1x fa-inverse" data-fa-transform="down-2"></span>
|
|
</span>
|
|
</button>
|
|
<button id="addTracker" data-type="announce">
|
|
<span class="fas fa-plus"></span>
|
|
</button>
|
|
<button id="removeTrackers">
|
|
<span class="fas fa-eraser"></span>
|
|
</button>
|
|
<div id="announce"></div>
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="urlList">Webseed URLs</label>
|
|
<button id="addWebseed" data-type="urlList">
|
|
<span class="fas fa-plus"></span>
|
|
</button>
|
|
<button id="removeWebseeds">
|
|
<span class="fas fa-eraser"></span>
|
|
</button>
|
|
<div id="urlList"></div>
|
|
</div>
|
|
|
|
<div class="property">
|
|
<label for="files">Files</label>
|
|
<button id="getFiles">
|
|
<span class="fad fa-chart-network"></span>
|
|
</button>
|
|
<table id="files">
|
|
<tbody id="filesBody"></tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="bundle.min.js"></script>
|
|
<script async defer src="https://www.googletagmanager.com/gtag/js?id=UA-172544485-1"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'UA-172544485-1');
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|