✨feature: Initial functional build
This commit is contained in:
49
src/index.html
Normal file
49
src/index.html
Normal 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>
|
||||
Reference in New Issue
Block a user