-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbatch.html
More file actions
26 lines (26 loc) · 715 Bytes
/
batch.html
File metadata and controls
26 lines (26 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Batch Process Files</title>
</head>
<body style="background:darkgray">
<div>
<span style="font-family:sans-serif">
<b>Batch Process Files </b>
</span>
<label for="limit_select">Limit</label>
<select id="limit_select"></select>
<input type="file" id="import" multiple/>
<div id="export" style="display:inline"></div>
</div>
<hr>
<div>
© Jason S. Ku 2024
<a href="https://github.com/origamimagiro/flat-folder">
Code on Github
</a>
</div>
<script type="module" src="./src/batch.js"></script>
</body>
</html>