-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/stlyes.css">
<title>QRCODE</title>
</head>
<body>
<div class="container">
<div class="buscador">
<img id="logo" src="./images/logo-qr-generator.svg" alt="Logo QRCode">
<form class="form">
<input id="url" type="text" name="url" placeholder="Enter an URL" />
<button id="boton">QR Code</button>
</form>
</div>
</div>
<script>
var button = document.getElementById("boton")
button.addEventListener("click", handleUrl)
function handleUrl(e) {
const input = document.querySelector("#url")
if (input.value != "") {
sessionStorage.setItem("url",input.value)
window.location.replace("qrpage.html");
e.preventDefault()
}
}
</script>
</body>
</html>