-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (81 loc) · 3.02 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
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
<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8">
<title>OpenSongController</title>
<meta name="Author" content="Gorka Mateusz">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="Stylesheet" type="text/css" href="css/main.css"/>
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div id="welcome">
<div class="title">
<img src="img/applogo.svg"/>
<a> OpenSongController </a>
</div>
<div>
<a>Adres IP komputera<br/>i port API programu OpenSong</a>
<input type="text" id="ip-address"/>
<a href="help.html">Dowiedz się więcej...</a>
</div>
<div class="button b-wide" id="butt-welcome">Uruchom</div>
<div id="error1" class="error">Coś poszło nie tak...<br/>Błąd odpowiedzi</div>
<div id="error2" class="error">Coś poszło nie tak...<br/>Błąd komunikacji</div>
<div id="error3" class="error">Coś poszło nie tak...<br/>Błąd komunikacji.<br/>Sprawdź port i adres IP</div>
<div class="author">
<a>Created by</a>
<a>Górka Mateusz</a>
<a href="kzswieb.eu">kzswieb.eu</a>
</div>
</div>
<div id="main">
<div id="slides-preview">
<!-- TODO preview -->
</div>
<div id="slides-con">Ładowanie...</div>
</div>
<div id="butt-panel">
<div id="ext-panel" style="display:none">
<div class="b-list butt-normal">
<img src="">
<a>Tryb normalny</a>
</div>
<div class="b-list butt-freeze">
<img src="img/freeze.svg">
<a>Zamroź ekran</a>
</div>
<div class="b-list butt-logo">
<img src="img/logo.svg">
<a>Wyświetl logo</a>
</div>
<div class="b-list butt-background">
<img src="img/background.svg">
<a>Wyświetl tło</a>
</div>
<div class="b-list butt-black">
<img src="img/black.svg">
<a>Czarny ekran</a>
</div>
<div class="b-list butt-white">
<img src="img/white.svg">
<a>Biały ekran</a>
</div>
</div>
<div class="ver-panel">
<a id="mode"></a>
</div>
<div class="ver-panel">
<div class="button butt-logo"><img src="img/logo.svg"/></div>
<div class="button butt-background"><img src="img/background.svg"/></div>
<div class="button b-wide b-ext" id="butt-ext"><a>Więcej opcji...</a></div>
</div>
<div class="ver-panel">
<div class="button b-big" id="butt-prev"><img src="img/prev.svg"/></div>
<div class="button b-mid butt-freeze"><img src="img/freeze.svg"/></div>
<div class="button b-big" id="butt-next"><img src="img/next.svg"/></div>
</div>
</div>
</body>
</html>