Add QR code html (test)

This commit is contained in:
Vortrex
2021-01-05 01:19:36 -06:00
parent 34def5e38f
commit 43adfebd3b

11
files/html/qrcode.html Normal file
View File

@@ -0,0 +1,11 @@
<html>
<head>
<title>QR Code</title>
</head>
<body>
<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "");
</script>
</body>
</html>