22 lines
538 B
HTML
22 lines
538 B
HTML
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Document</title>
|
||
|
<script defer src="./index.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div className="w-full h-full">
|
||
|
<input
|
||
|
type="file"
|
||
|
id="fileInput"
|
||
|
webkitdirectory="true"
|
||
|
mozdirectory="true"
|
||
|
directory="true"
|
||
|
multiple
|
||
|
/>
|
||
|
<button id="uploadButton">Upload and Zip Files</button>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|