-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
116 lines (116 loc) · 3.33 KB
/
options.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<html>
<head>
<title>MiniPlay Options</title>
<link href='https://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles/chrome-bootstrap.css" />
<script src='scripts/jquery.js' type='text/javascript'></script>
<script src='scripts/options.js' type='text/javascript'></script>
</head>
<body class='chrome-bootstrap'>
<div class='frame'>
<div class='navigation'>
<h1>
MiniPlay
</h1>
<ul class='menu'>
<li class='selected'>
<a href='#settings'>Settings</a>
</li>
<li class>
<a href='#about'>About</a>
</li>
<li class>
<a href='#credits'>Credits</a>
</li>
</ul>
</div>
<div class='mainview view'>
<div id='settings' class='selected' style='display: block;'>
<header>
<h1>
Settings
</h1>
</header>
<div class='content'>
<section>
<h3>
Notifications
</h3>
<div class='checkbox'>
<label>
<input type='checkbox' id='enable-notifications'>
<span>Enable notifications</span>
</label>
</div>
</section>
<section>
<h3>
Shortcuts
</h3>
<div class='checkbox'>
<label>
<input type='checkbox' id='enable-shortcuts'>
<span>Enable shortcuts</span>
</label>
</div>
<p>
<a href='#' id='extension'>Modify keybindings</a>
</p>
</section>
<section>
<h3>
Last.fm
</h3>
<div class='checkbox'>
<label>
<input type='checkbox' id='enable-scrobbling'>
<span>Enable Last.fm scrobbling</span>
</label>
</div>
<p id='login'>
<a href='#'>Authorize Last.fm account</a>
<p id='auth'>
You appear to be logged in. If you are having problems scrobbling, reauthorizing may fix the issue.
</p>
</p>
</section>
</div>
</div>
<div id='about' class style='display: none;'>
<header>
<h1>
About
</h1>
</header>
<div class='content'>
<p id='version'></p>
<p>
Contribute code or report issues on <a href="https://github.com/iambald/MiniPlay" target="_blank">Github</a>.
</p>
</div>
</div>
<div id='credits' class style='display: none;'>
<header>
<h1>
Credits
</h1>
</header>
<div class='content'>
<p>
<a href="https://design.google.com/icons/" target="_blank">Material Icons</a> by Google.
</p>
<p>
<a href="https://www.getmdl.io/" target="_blank">Material Design Lite</a> by Google.
</p>
<p>
<a href="https://angularjs.org/" target="_blank">Angular.js</a> by Google.
</p>
<p>
<a href="https://jquery.com/" target="_blank">jQuery</a> by The jQuery Foundation.
</p>
</div>
</div>
</div>
</div>
</body>
</html>