mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-23 19:59:26 +01:00
18 lines
378 B
HTML
18 lines
378 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Publish to ntfy.sh</title>
|
|
</head>
|
|
<body>
|
|
<button onclick="publish()">Publish</button>
|
|
</body>
|
|
<script>
|
|
function publish() {
|
|
fetch('https://ntfy.sh/mytopic', {
|
|
method: 'POST', // PUT works too
|
|
body: 'Backup successful 😀'
|
|
});
|
|
}
|
|
</script>
|
|
</html>
|