index.html 926 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>PlayByTurn</title>
  7. </head>
  8. <body>
  9. <h1>PlayByTurn</h1>
  10. <p><a id="addSong" href="#">Add song</a></p>
  11. <p><a href="/play">Player (only open on one system)</a></p>
  12. <p><small>PlayByTurn is released under the GNU Affero General Public License and available on <a href="https://notabug.org/SylvieLorxu/PlayByTurn">NotABug</a>.</small></p>
  13. <script type="text/javascript">
  14. document.getElementById('addSong').onclick = function() {
  15. var url = prompt("Enter an URL and be patient");
  16. var xhr = new XMLHttpRequest();
  17. if (url != null) {
  18. console.log("Adding song...");
  19. xhr.open('GET', '/add?url=' + url, true);
  20. xhr.onload = function() {
  21. alert(xhr.responseText);
  22. };
  23. xhr.send();
  24. };
  25. };
  26. </script>
  27. </body>
  28. </html>