You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
689 B
21 lines
689 B
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
<link rel='stylesheet' type='text/css' href="./index.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<label>
|
||
|
<span class="form-label">choose a zip file</span>
|
||
|
<button id="file-input-button">Open...</button>
|
||
|
<input type="file" id="file-input" accept="application/zip" hidden>
|
||
|
</label>
|
||
|
</div>
|
||
|
<script src="./third/zip-no-worker-inflate.min.js"></script>
|
||
|
<script src="./index.js"></script>
|
||
|
</body>
|
||
|
</html>
|