-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxlsx-encoder.html
40 lines (40 loc) · 2.33 KB
/
xlsx-encoder.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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/turretcss.min.css" integrity="sha256-OyCIWTH8XVzlBgue2UM2JLSq512Oq2SOoHdM1MOy0GM=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/surpass.css" integrity="sha256-zeXm6nDG9CVlCCL10O9LnXXcb55H8fWZ0dCYInNxFiM=" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="/manifest.json">
<title>florist database generator</title>
</head>
<body>
<main class="container">
<form id="form">
<div class="field">
<label for="event-name">Event name</label>
<input type="text" id="event-name">
</div>
<div class="field">
<label for="xlsx-file">Membership spreadsheet</label>
<input type="file" id="xlsx-file">
</div>
<div class="field">
<label for="xlsx-file">Passphrase</label>
<input type="password" id="passphrase">
</div>
<progress id="strength" value="0"></progress>
<button type="submit" class="button-primary" id="dl-button" disabled>Download encrypted database</button>
</form>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/nacl-fast.min.js" integrity="sha256-PFNk0L1SZO7Vl1OXdyjcqo76UxE3EnJ66+y6dr2qq70=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/shim.min.js" integrity="sha256-TOUdTIc3yiq+R7qVrQJSpcSS/3JG0QkSxohgDE0YBME=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/xlsx.full.min.js" integrity="sha256-vQtjAwfnRVCP0Rc4o02LghGM372FOjehAdx7SnzHiEI=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/surpass.js" integrity="sha256-1qDHLgLveHz9DujbqkVnSktigVt420LXQUG5J7SbTEI=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/zxcvbn.js" integrity="sha256-9CxlH0BQastrZiSQ8zjdR6WVHTMSA5xKuP5QkEhPNRo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/FileSaver.min.js" integrity="sha256-FPJJt8nA+xL4RU6/gsriA8p8xAeLGatoyTjldvQKGdE=" crossorigin="anonymous"></script>
<script src="setup.js"></script>
<script src="xlsx-encoder.js"></script>
</body>
</html>