forked from tirithen/kodi-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 2.44 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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<title data-l10n-id="app_title"></title>
<link rel="stylesheet" href="/css/style.css">
<link rel="resource" type="application/l10n" href="/locales/locales.ini">
<script src="/js/libs/l10n.js" defer></script>
<script src="/js/app.js" defer></script>
</head>
<body>
<h1 data-l10n-id="app_title" class="site-heading"></h1>
<a disabled href="#power-options" id="power" class="power"></a>
<ul id="power-options" class="menu">
<li><button data-l10n-id="shutdown" class="menu-item" data-value="shutdown"></button></li>
<li><button data-l10n-id="restart" class="menu-item" data-value="restart"></button></li>
<li><button data-l10n-id="exit" class="menu-item" data-value="exit"></button></li>
</ul>
<div class="center">
<button type="button" id="up">▴</button>
</div>
<div class="center">
<button type="button" id="left">◂</button>
<button type="button" id="select">⚫</button>
<button type="button" id="right">▸</button>
</div>
<div class="center margin-bottom">
<button type="button" id="down">▾</button>
</div>
<div class="center">
<button type="button" class="small" id="previous">⏮</button>
<button type="button" class="small" id="reverse">⏪</button>
<button type="button" class="small" id="playpause">⎉ ▶</button>
<button type="button" class="small" id="forward">⏩</button>
<button type="button" class="small" id="next">⏭</button>
</div>
<div class="center">
<button type="button" class="small" id="stop">■</button>
<button type="button" class="small" id="home">⌂</button>
<button type="button" class="small" id="player"></button>
<button type="button" class="small" id="back">↩</button>
<p>
<label for="range" data-l10n-id="volume"></label>
<input type="range" id="volume" min="0" max="100">
</p>
</div>
<div class="center">
<p>
<label for="text" data-l10n-id="send_text_label"></label>
<input type="text" id="text" data-l10n-id="send_text_input">
</p>
<p>
<label for="address" data-l10n-id="address_label"></label>
<input type="text" id="address" data-l10n-id="address_input">
</p>
</div>
<div id="overlay" class="overlay"></div>
</body>
</html>