-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
171 lines (159 loc) · 5.96 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.3.1.min.css" />
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery.ui.touch-punch.min.js"></script>
<script type="text/javascript" src="cordova-2.7.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
<title>Wycieczki</title>
</head>
<body>
<!-- Strona główna -->
<div data-role="page" id="pagehome">
<div data-theme="b" data-role="header">
<h3>
Lista wycieczek
</h3>
</div>
<div data-role="content">
<a id="buttonnew" data-role="button" data-theme="b" href="#">
Dodaj nową wycieczkę...
</a>
<div id="exclist" data-role="collapsible-set" data-theme="b" data-content-theme="d">
<div data-role="collapsible" data-collapsed="false">
<h3>
Otwórz wycieczkę
</h3>
<ul data-role="listview" id="listofexcursions">
</ul>
</div>
</div>
</div>
<div data-theme="b" data-role="footer" data-position="fixed">
<h3>
Lista wycieczek
</h3>
</div>
</div>
<!-- Strona dodawania/edycji wycieczek -->
<div data-role="page" id="addexcursion">
<div data-theme="b" data-role="header" data-position="fixed">
<a href="#pagehome" data-icon="delete">Anuluj</a>
<h3>
Dodaj/Edytuj wycieczkę
</h3>
<a href="javascript:butsaveexc()" data-icon="check">Zapisz</a>
</div>
<div data-role="content">
<div data-role="fieldcontain">
<input name="name" id="inputname" placeholder="Nazwa wycieczki..." value=""
type="text">
</div>
<div data-role="fieldcontain">
<textarea name="description" id="inputdescription" placeholder="Opis..."></textarea>
</div>
<a id="buttondelete" data-role="button" data-theme="b" href="javascript:deleteprofile()">
Usuń wycieczkę
</a>
<a id="buttonadd" data-role="button" data-theme="b" href="#addobject">
Dodaj zwiedzany obiekt
</a>
<div id="listexcursions" data-role="collapsible-set" data-theme="b" data-content-theme="d">
<div data-role="collapsible" data-collapsed="false">
<h3>
Lista obiektów
</h3>
<ul data-role="listview" id="listofexcs">
</ul>
</div>
</div>
<a id="buttonphoto" data-role="button" data-theme="b" href="javascript:takephoto()">
Zrób zdjęcie
</a>
<div data-role="popup" id="popupphoto" data-history="false">
<p>Zdjęcie zapisane.<p>
</div>
<h4 id="labelgeo">
Długość i szerokość geograficzna
</h4>
</div>
<div data-theme="b" data-role="footer" data-position="fixed">
<h3>
Dodaj/Edytuj wycieczkę
</h3>
</div>
</div><!-- /page -->
<!-- Strona dodawania/edycji obiektów -->
<div data-role="page" id="addobject">
<div id="objheader" data-theme="b" data-role="header" data-position="fixed">
<a href="#addexcursion" data-icon="back">Anuluj</a>
<h3>
Dodaj/Edytuj obiekt
</h3>
<a href="javascript:saveobject()" id="buttonsave" data-icon="check">Zapisz</a>
</div>
<div data-role="content">
<div id="objgeneral" data-role="collapsible-set" data-theme="b" data-content-theme="d">
<div data-role="collapsible" data-collapsed="false">
<h3>
Ogólne
</h3>
<div data-role="fieldcontain">
<label for="objname">
Nazwa
</label>
<input name="objname" id="objname" placeholder="" value="" type="text">
</div>
<div data-role="fieldcontain">
<label for="notes">
Notatki
</label>
<textarea name="notes" id="notes" placeholder=""></textarea>
</div>
</div>
</div>
<div id="objecttype" data-role="collapsible-set" data-theme="b" data-content-theme="d">
<div data-role="collapsible" data-collapsed="false">
<h3>
Rodzaj obiektu
</h3>
<div data-role="fieldcontain">
<label for="objgroup">
Grupa
</label>
<select id="objgroup" name="group" data-theme="b">
<option value="0">
<none>
</option>
</select>
</div>
<div data-role="fieldcontain">
<label for="objtype">
Konkretny rodzaj
</label>
<select id="objtype" name="type" data-theme="b">
<option value="0">
<none>
</option>
</select>
</div>
</div>
</div>
</div>
<div data-theme="b" data-role="footer" data-position="fixed">
<h3>
Dodaj/Edytuj obiekt
</h3>
</div>
</div><!-- /page -->
</body>
</html>