You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>QR Generátor</title>
|
|
<link rel="stylesheet" href="css/bootstrap.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 class="display-1">QR Generátor</h1>
|
|
<div class="card shadow">
|
|
<div class="card-body text-center">
|
|
<h3 class="card-title mb-4">Karta: QR Generátor</h3>
|
|
<div class="mb-3 text-start">
|
|
<label for="qrText" class="form-label"></label>
|
|
<input type="text" id="qrText" class="form-control" placeholder="URL nebo Text (např. www.google.com)">
|
|
</div>
|
|
<button onclick="generujQR()" class="btn btn-outline-primary w-100">Vytvořit QR Kód</button>
|
|
<div id="result">
|
|
<img src="" alt="QR Kód" id="qrImg">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|