31 lines
695 B
HTML
Raw Normal View History

2024-08-26 18:37:38 +05:30
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
.w-full {
height: 90%;
width: 90%;
padding: 0%;
margin: 0%;
}
</style>
<script defer src="./index.js"></script>
</head>
<body>
<div>
<input
class="w-full"
type="file"
id="fileInput"
webkitdirectory="true"
mozdirectory="true"
directory="true"
multiple
/>
<button id="uploadButton">Upload and Zip Files</button>
</div>
</body>
</html>