forked from Fliplet/fliplet-widget-push-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.html
28 lines (28 loc) · 941 Bytes
/
build.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- Push notifications component -->
<div class="popup-screen" data-push-notification-id="{{id}}">
<div class="popup-wrapper">
<div class="popup-content">
<p class="popup-title">
{{#if popupMessage}}
{{popupTitle}}
{{else}}
App updates and notifications
{{/if}}
</p>
<div class="popup-body">
{{#if popupMessage}}
{{ nl2br popupMessage }}
{{else}}
You will receive notifications when app updates are available.<br>
Please tap on Allow Notifications below to receive notifications on the updates.
{{/if}}
</div>
</div>
<div class="popup-bottom">
<button type="button" data-allow>Allow Notifications</button>
<button type="button" data-dont-allow>Don't Allow</button>
<button type="button" data-remind>Remind me later</button>
</div>
</div>
</div>
<!-- End of Push notifications -->