forked from ireade/simply-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Simply Notify</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/reset.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div class="wrapper">
<main>
<header>
<h1>Simply Notify</h1>
<p><em>A simple application to send notifications to everyone subscribed. It's simple. It's useless. It's simply notify.</em></p>
</header>
<button id="sign-in">Sign In</button>
<button id="sign-out" hidden>Sign Out</button>
<button id="subscribe" hidden>
Subscribe
<img src="/img/bell.png" alt="Notifications">
</button>
<button id="unsubscribe" hidden>
Unsubscribe
<img src="/img/bell.png" alt="Notifications">
</button>
<form id="send-notification-form" hidden>
<label class="sr-only" for="notification-message">Notification Message</label>
<div>
<textarea id="notification-message" maxlength="40" placeholder="What would you like to say?"></textarea>
<button type="submit" id="send-notification" aria-label="Send">
<img src="/img/send.png" alt="">
</button>
</div>
</form>
</main>
<footer>
<small><a href="https://github.com/ireade/simply-notify">View Source</a></small>
</footer>
</div>
<!-- Firebase SDK -->
<script src="/__/firebase/4.1.3/firebase.js"></script>
<script src="/__/firebase/init.js"></script>
<script src="/js/main.js"></script>
</body>
</html>