pages/qr/index.html
2025-04-14 13:38:42 -04:00

21 lines
No EOL
738 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>MilkNet | QR Code Generator</title>
<link id="favicon" rel="icon" href="/assets/img/milk.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>QR Code Generator</h1>
<input type="text" id="qr-text" placeholder="Enter text or URL" />
<button id="generate">Generate QR</button>
<div id="qrcode"></div>
<button id="download" style="display:none;">Download image</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/qrcodejs/qrcode.min.js"></script>
<script src="script.js"></script>
</body>
</html>