-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpreferences.html
43 lines (41 loc) · 1.24 KB
/
preferences.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Twitter Preferences</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="prefs.css">
</head>
<body>
<header class="page-header">
<h1>Settings</h1>
</header>
<section class="settings-section">
<header class="settings-section-header">
<h2><i class="fa fa-bell"></i> Push Notifications</h2>
</header>
<ul class="settings-section-body">
<li>
<button id="auth_button" class="btn" type="button">
Authorize for Push Notifications <i class="fa fa-twitter"></i>
</button>
</li>
<li>
<fieldset id="notifications_fieldset" disabled>
<div class="row">
<legend class="label">Toggle Push Notifications</legend>
<div class="options">
<label>
<input type="checkbox" id="toggle_notifications">
</label>
</div>
</div>
</fieldset>
</li>
</ul>
</section>
</body>
<script>
require('./renderer.js')
</script>
</html>