73 lines
2.2 KiB
HTML
73 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OD-DL</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<header class="toolbar">
|
|
<label for="remote-url">Contents of:</label>
|
|
<input id="remote-url" type="text" placeholder="http://example.com/" />
|
|
<button id="remote-submit">Submit</button>
|
|
</header>
|
|
|
|
<main class="grid">
|
|
<section class="panel">
|
|
<div class="panel-head">
|
|
<strong>Local Folder Tree</strong>
|
|
<div class="path-row">
|
|
<input id="local-path" type="text" readonly />
|
|
<button id="local-browse">Browse</button>
|
|
</div>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="list" id="local-list">
|
|
<div class="list-row list-header">
|
|
<div class="col name">
|
|
Name
|
|
<span class="col-resizer" data-target="local-list"></span>
|
|
</div>
|
|
<div class="col size">Size</div>
|
|
</div>
|
|
<div class="list-body" id="local-list-body"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="panel">
|
|
<div class="panel-head">
|
|
<strong>Remote Folder Tree</strong>
|
|
<div class="path-row">
|
|
<button id="download-btn">Download Selected</button>
|
|
<label class="checkbox">
|
|
<input id="use-wget" type="checkbox" /> Use wget if available
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="tree" id="remote-tree"></div>
|
|
<div class="list" id="remote-list">
|
|
<div class="list-row list-header">
|
|
<div class="col name">
|
|
Name
|
|
<span class="col-resizer" data-target="remote-list"></span>
|
|
</div>
|
|
<div class="col size">Size</div>
|
|
</div>
|
|
<div class="list-body" id="remote-list-body"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<details class="log">
|
|
<summary>Session Log</summary>
|
|
<div id="log-list"></div>
|
|
</details>
|
|
|
|
<script src="renderer.js"></script>
|
|
</body>
|
|
</html>
|