Advertisement
Guest User

Fluxus shitsite src

a guest
Mar 29th, 2020
1,330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <script>
  7. function copyToClipboard() {
  8. var e = "n9c3LiEZPbwrG5f4VsYWBDMa02evmUK1";
  9. var tempItem = document.createElement('input');
  10.  
  11. tempItem.setAttribute('type','text');
  12. tempItem.setAttribute('display','none');
  13.  
  14. let content = e;
  15. if (e instanceof HTMLElement) {
  16. content = e.innerHTML;
  17. }
  18.  
  19. tempItem.setAttribute('value',content);
  20. document.body.appendChild(tempItem);
  21.  
  22. tempItem.select();
  23. document.execCommand('Copy');
  24.  
  25. tempItem.parentElement.removeChild(tempItem);
  26.  
  27. alert("Successfully copied the key to your clipboard!");
  28. }
  29. </script>
  30. <meta charset="UTF-8">
  31. <title>Fluxus | Key System</title>
  32. <link rel="stylesheet" href="./style.css">
  33. </head>
  34. <body>
  35. <div class="log-form">
  36. <h2>Fluxus</h2>
  37. <form>
  38. <input type="text" title="username" value="n9c3LiEZPbwrG5f4VsYWBDMa02evmUK1" />
  39. <button type="submit" onclick="copyToClipboard()" class="btn">Copy Key</button>
  40. </form>
  41. </div>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement