blob: 21170b758e7afc64612e9e893c333636fb30b267 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{% include 'partials/head' %}
{% include 'partials/flash' %}
<style>
</style>
<nav class="resource-nav">
<a href="/admin/" class="btn">Back</a>
</nav>
<section class="main resource">
<h2>Custom Push Notification</h2>
<form id='custom' id="resource_form">
<input type="hidden" name="_method" value="PUT">
<div class="property string">
<label for='message'>Message</label>
<input type='text' name='message' id='message'>
</div>
<div class="property string">
<label for='url'>Destination</label>
<select id='url' name='url'>
<option>/</option>
<option selected>/store</option>
<option>/hub</option>
<option>/story</option>
<option>/archive</option>
</select>
</div>
<div>
<label></label>
<button type='submit' class='btn'>Send Push Notification</button>
</div>
</form>
</section>
{% include 'partials/tail' %}
<script src="public/push.js"></script>
|