-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 999 Bytes
/
index.html
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
27
28
29
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Modern ZIP Extractor Tool</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.6.0/jszip.min.js"></script>
</head>
<body>
<div class="input-wrapper">
<input type="file" id="zipFileInput" accept=".zip" />
</div>
<div id="loadingIndicator" style="display: none; color: #58a6ff;">
Processing... Please wait.
</div>
<div class="statistics">
<span id="fileCount">Total Files: 0</span> |
<span id="charCount">Total Characters: 0</span>
</div>
<pre id="output"></pre>
<div class="button-group">
<button id="downloadButton">Download Content</button>
<button id="copyButton">Copy Content</button>
</div>
<button id="cancelButton">Cancel Extraction</button>
<script src="extractor.js"></script>
</body>
</html>