20 lines
370 B
HTML
20 lines
370 B
HTML
|
|
<html>
|
|
<head>
|
|
<link rel="icon" href="data:,">
|
|
</head>
|
|
<body>
|
|
<h1>Webpush Demo</h1>
|
|
<script
|
|
type="text/javascript"
|
|
src="/static/js/register_service_worker.js">
|
|
</script>
|
|
<script type="text/javascript">
|
|
registerServiceWorker(
|
|
"/static/js/service_worker.js",
|
|
"{{config['VAPID_PUBLIC_KEY']}}",
|
|
"/api/push-subscriptions"
|
|
);
|
|
</script>
|
|
</body>
|
|
</html> |