-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton-framework/1.1.1/skeleton.css" integrity="sha512-bkbbtvfcVjmlzyq/v4GaSiyJY3DStQhRIbJY9D0qrheR4LgSNNzrEQcdkqdJQUbuYCkLkLCj5icLxdjxRQKsJg==" crossorigin="anonymous" />
<title>Notification Sender</title>
</head>
<body>
<div class="container">
<div class="authentication card">
<h3>SUST Bus</h3>
<h5>Send Notification (multicast)</h5>
<form id="authentication-form">
<!-- <label for="topic">Topic</label> -->
<input type="text" id="topic" placeholder="Topic"> <br>
<!-- <label for="title">Title</label> -->
<input type="text" id="title" placeholder="Title"> <br>
<!-- <label for="body">Body</label> -->
<input type="text" id="body" placeholder="Body"> <br>
<!-- <label for="key">key</label> -->
<input type="password" id="key" placeholder="Key"> <br>
<input type="submit" id="submit">
</form>
<p id="log"></p>
</div>
<div id="footer">
</div>
</div>
<script src = "notificationSender.js"></script>
<script src = "app.js"></script>
</body>
</html>