publish.html 378 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Publish to ntfy.sh</title>
  6. </head>
  7. <body>
  8. <button onclick="publish()">Publish</button>
  9. </body>
  10. <script>
  11. function publish() {
  12. fetch('https://ntfy.sh/mytopic', {
  13. method: 'POST', // PUT works too
  14. body: 'Backup successful 😀'
  15. });
  16. }
  17. </script>
  18. </html>