feature: Initial functional build

This commit is contained in:
Keith Solomon
2026-01-03 12:23:47 -06:00
parent cef53f2f2d
commit 046f08d559
10 changed files with 4672 additions and 2 deletions

49
src/index.html Normal file
View File

@@ -0,0 +1,49 @@
<!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" id="local-list"></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" id="remote-list"></div>
</section>
</main>
<details class="log">
<summary>Log Section (Collapsed)</summary>
<div id="log-list"></div>
</details>
<script src="renderer.js"></script>
</body>
</html>