-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.5 KB
/
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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>FabAccess Sticker Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<h1>FabAccess Sticker Generator</h1>
<button id="settings-button" title="Settings">
<span>Settings</span>
</button>
<div id="fabaccess-sticker-generator">
<fabaccess-preview-box value="" size="25"></fabaccess-preview-box>
<fabaccess-settings-form></fabaccess-settings-form>
<div class="download-buttons">
<button id="download-qr-code-svg">Download QR Code as SVG</button>
<button id="download-qr-code-png">Download QR Code as PNG</button>
<button id="add-qr-code-to-page">Add QR Code to PDF</button>
<button id="download-pdf">Download PDF</button>
</div>
<fabaccess-pdf-viewer></fabaccess-pdf-viewer>
</div>
</main>
<fabaccess-color-settings></fabaccess-color-settings>
</body>
<script defer src="/src/PreviewBox.mjs" type="module"></script>
<script defer src="/src/SettingsForm.mjs" type="module"></script>
<script defer src="/src/ColorSettings.mjs" type="module"></script>
<script defer src="/src/PDFViewer.mjs" type="module"></script>
<script defer src="index.mjs" type="module"></script>
</html>