-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbatch.html
79 lines (75 loc) · 3.55 KB
/
batch.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Batch QR Generator - QuickQR</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="batch.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/qrcode/build/qrcode.min.js"></script>
<script src="batch.js" defer></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-firestore-compat.js"></script>
</head>
<body>
<div class="app-container">
<header class="header">
<div class="logo">
<a href="index.html" class="logo-link">
<div class="logo-icon">
<i class="fas fa-qrcode"></i>
<i class="fas fa-wand-magic-sparkles overlay-icon"></i>
</div>
<h1>QuickQR</h1>
</a>
</div>
<button id="theme-toggle" class="theme-btn">
<i class="fas fa-lightbulb"></i>
</button>
</header>
<main class="main-content">
<div class="batch-container">
<div class="input-panel">
<div class="batch-header">
<h1>Batch QR Generator</h1>
<p>Generate multiple QR codes at once by entering one item per line</p>
</div>
<textarea id="batchInput" class="batch-textarea"
placeholder="Enter one item per line. Each line will generate a separate QR code. Example: https://example.com Hello World +1234567890"></textarea>
<div class="batch-options">
<select id="batchSize" class="select-field">
<option value="200">Small (200x200)</option>
<option value="300" selected>Medium (300x300)</option>
<option value="400">Large (400x400)</option>
</select>
<button id="generateBatchBtn" class="primary-button">
<i class="fas fa-qrcode"></i> Generate Batch
</button>
<button id="downloadAllBtn" class="secondary-button" disabled>
<i class="fas fa-download"></i> Download All (.zip)
</button>
</div>
</div>
<div class="qr-display-panel">
<div class="qr-wrapper">
<div id="qrGrid" class="qr-grid">
<!-- QR codes will be added here -->
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-bottom">
<div class="made-with-love">
Made with <i class="fas fa-heart"></i> by Notion Community, VIT Bhopal
</div>
</div>
</footer>
</div>
<div id="toast" class="toast"></div>
</body>
</html>