-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectFormat.html
More file actions
31 lines (28 loc) · 1.01 KB
/
Copy pathselectFormat.html
File metadata and controls
31 lines (28 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Select Export Format - Duva</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="Duva Logo.svg" height="100em">
</header>
<div class="container">
<h2>Select Export Format</h2>
<button id="exportJSON">Export as JSON</button>
<div id="qrSection" style="display: none;">
<h2>Download QR Code</h2>
<canvas id="qrcode"></canvas>
<button id="downloadQR">Download QR Code</button>
</div>
<button id="downloadFile" style="display: none;">Download JSON File</button>
<!-- Clear and Restart Button -->
<button id="clearAndRestart" style="margin-top: 20px;">Clear and Restart</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/qrious@4.0.2/dist/qrious.min.js"></script>
<script src="formatScript.js"></script>
</body>
</html>