Files
TorrentParts/index.html
2020-06-21 21:32:19 -04:00

50 lines
1.6 KiB
HTML

<!DOCTYPE html>
<head>
<script src="https://kit.fontawesome.com/9ca49f101f.js"></script>
</head>
<body>
<div class="form-group">
<label class="col-form-label" for="magnet">Magnet URL</label>
<input id="magnet" type="text" class="form-control" placeholder="magnet:?xt=urn:btih…" />
<div>or</div>
<label class="col-form-label" for="torrent">Upload Torrent</label>
<input id="torrent" type="file" />
</div>
<div class="form-group">
<label class="col-form-label" for="name">Torrent Name</label>
<input id="name" type="text" class="form-control" value="" placeholder="No name" />
</div>
<div class="form-group">
<label class="col-form-label" for="creationDate">Created</label>
<input id="creationDate" type="datetime-local" class="form-control" value="" placeholder="Empty" />
<label class="col-form-label" for="createdBy">with</label>
<input id="createdBy" type="text" class="form-control" value="" placeholder="Unspecified" disabled />
</div>
<div class="form-group">
<label class="col-form-label" for="comment">Comment</label>
<input id="comment" type="text" class="form-control" value="" placeholder="Empty" />
</div>
<div class="form-group">
<label class="col-form-label" for="hash">Unique Hash</label>
<input id="hash" type="text" class="form-control" value="" placeholder="" disabled/>
</div>
<div class="form-group">
<label class="col-form-label" for="files">Files <span id="torrentSize"></span></label>
<table id="files">
<tbody id="filesBody"></tbody>
</table>
</div>
<script src="bundle.js"></script>
</body>
</html>