-
Notifications
You must be signed in to change notification settings - Fork 11
/
pop.html
41 lines (31 loc) · 1.07 KB
/
pop.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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, shrink-to-fit=no, minimal-ui">
<title>Gotify Send Push</title>
<link href="css/spectre.min.css" rel="stylesheet" />
<link href="css/custom.css" rel="stylesheet" />
</head>
<body>
<div class="container text-center">
<a href="options.html" class="btn btn-gotify">Gotify Setup</a>
<h2>Send Custom Push Notification</h2>
<form id="postData">
<div class="form-group">
<input class="form-input" type="text" name="title" id="title" autocomplete="off" placeholder="Your Title">
</div>
<div class="form-group">
<textarea class="form-input" type="text" rows="4" name="message" id="message" autocomplete="off" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="btn btn-gotify">Send Push</button>
</form>
<br>
<div id="push"></div>
<br>
<button id="pushinfo" type ="submit" class="btn btn-gotify btn-lg">Send Page Info</button>
</div>
<script src="js/app.js"></script>
</body>
</html>