17 lines
425 B
HTML
17 lines
425 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Share as QR</title>
|
||
|
|
<link rel="stylesheet" href="popup.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main>
|
||
|
|
<div id="qr" class="qr"></div>
|
||
|
|
<p id="message" class="message" role="status" hidden></p>
|
||
|
|
<p id="url-text" class="url"></p>
|
||
|
|
<button id="copy" type="button">Copy URL</button>
|
||
|
|
</main>
|
||
|
|
<script type="module" src="popup.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|