-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
277 lines (219 loc) · 12.8 KB
/
Copy pathindex.html
File metadata and controls
277 lines (219 loc) · 12.8 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html>
<html>
<head>
<title>Mobile App Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.4.3.min.css"/>
<link rel="stylesheet" type="text/css" href="css/mobiscroll.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.gritter.css" />
<link rel="stylesheet" type="text/css" href="css/jqx.base.css"/>
<link rel="stylesheet" type="text/css" href="css/jqx.arctic.css"/>
<link rel="stylesheet" type="text/css" href="css/my.demo.css" />
</head>
<body>
<!-- Used for hiding unstyled controls until JQM actually gets loaded -->
<div id="divLoader" style="background-color: white; width: 100%; height: 100%; margin: 0; position: absolute;z-index: 999999; top: 0; bottom: 0; left: 0; right: 0; ">
<img src="img/my_logo.jpg" alt="" style="margin: 0 auto; display: block; padding-top: 75px;"/>
</div>
<form id="form1" name="form1">
<!-- ===================================================================================== -->
<!-- LOGIN PAGE -->
<!-- ===================================================================================== -->
<div data-role="page" id="pgLogin">
<div data-role="header">
<h1></h1>
</div>
<div role="main" class="ui-content">
<input type="text" data-clear-btn="true" id="tbUsername" name="tbUsername" placeholder="" value="username" />
<input type="password" data-clear-btn="true" id="tbPassword" name="tbPassword" autocomplete="off" placeholder="" value="password" />
<input type="button" value="" id="btnLogin" name="btnLogin"/>
</div><!-- /content -->
<div data-role="footer">
<h5>© 2014 BAY</h5>
</div><!-- /footer -->
</div>
<!-- ===================================================================================== -->
<!-- /LOGIN PAGE -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- HOME APPLICATION PAGE -->
<!-- ===================================================================================== -->
<div data-role="page" id="pgAppHome">
<div data-role="header" data-position="fixed" data-tap-toggle="false">
<h1></h1>
<a href="#pnlNavGlobal" class="ui-btn ui-icon-bars ui-btn-icon-left">Menu</a>
</div>
<div role="main" class="ui-content">
<h4>Home screen</h4>
<input type="button" id="btnNewItem" name="btnNewItem" value=""/>
<input type="button" id="btnExistingItems" name="btnExistingItems" value=""/>
</div><!-- /content -->
<div data-role="footer">
<h5>© 2014 BAY</h5>
</div><!-- /footer -->
</div>
<!-- ===================================================================================== -->
<!-- /HOME APPLICATION PAGE -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- EXISTING Items PAGE -->
<!-- ===================================================================================== -->
<div data-role="page" id="pgExistingItems">
<div data-sectionname="hlExistingContacts" data-role="header" data-position="fixed" data-tap-toggle="false">
<h1></h1>
<a href="#pnlNavGlobal" class="ui-btn ui-icon-bars ui-btn-icon-left">Menu</a>
</div>
<div role="main" class="ui-content">
<input id="filterExisting" data-type="search" class="ignore" />
<table id="tblExisting" data-role="table" data-filter="true" data-input="#filterExisting" class="ui-responsive">
<thead>
<tr>
<th></th>
<th data-priority="1">Name</th>
<th>Date/Time</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div><!-- /content -->
<div data-role="footer">
<h5>© 2014 BAY</h5>
</div><!-- /footer -->
</div>
<!-- ===================================================================================== -->
<!-- /EXISTING Items PAGE -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- REVIEW PAGE -->
<!-- ===================================================================================== -->
<div data-role="page" id="pgReview">
<div data-sectionname="hlReview" data-role="header" data-position="fixed" data-tap-toggle="false">
<h1></h1>
<a href="#pnlNavGlobal" class="ui-btn ui-icon-bars ui-btn-icon-left">Menu</a>
</div>
<div role="main" class="ui-content">
<h4>Review screen</h4>
<div id="divReviewErrorSummary" style="display:none;"></div>
<div id="divReviewContainer"></div>
<input type="button" id="btnSubmitToServer" name="btnSubmitToServer" value="" />
<input type="button" id="btnUpdateTest" name="btnUpdateTest" value="Update Test"/>
</div><!-- /content -->
<div data-role="footer">
<h5>© 2014 BAY</h5>
</div><!-- /footer -->
</div>
<!-- ===================================================================================== -->
<!-- /REVIEW PAGE -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- LOG PAGE -->
<!-- ===================================================================================== -->
<div data-role="page" id="pgLog">
<div data-sectionname="hlActivityLog" data-role="header">
<h1></h1>
<a href="#pnlNavGlobal" class="ui-btn ui-icon-bars ui-btn-icon-left">Menu</a>
</div>
<div role="main" class="ui-content">
<textarea id="tbLog" name="tbLog" class="ignore"></textarea>
<input type="button" id="btnClearLog" name="btnClearLog" value="" class="ignore"/>
</div><!-- /content -->
<div data-role="footer">
<h5>© 2014 BAY</h5>
</div><!-- /footer -->
</div>
<!-- ===================================================================================== -->
<!-- /LOG PAGE -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- GENERAL ERROR -->
<!-- ===================================================================================== -->
<div data-role="page" id="pgError">
<div data-role="header">
<h1></h1>
</div>
<div role="main" class="ui-content">
<h3>An error has occured</h3>
<textarea id="tbError" name="tbError" class="ignore" readonly="readonly"></textarea>
<button id="btnCopyError" name="btnCopyError" class="ui-btn">Copy error to clipboard</button>
<button id="btnReloadApp" name="btnReloadApp" class="ui-btn ui-icon-refresh ui-btn-icon-left">Reload application</button>
</div><!-- /content -->
<div data-role="footer">
</div><!-- /footer -->
</div>
<!-- ===================================================================================== -->
<!-- /GENERAL ERROR -->
<!-- ===================================================================================== -->
</form>
<!-- ===================================================================================== -->
<!-- GLOBAL NAV PANEL -->
<!-- ===================================================================================== -->
<div data-role="panel" id="pnlNavGlobal" data-position="left" data-display="overlay" data-theme="a">
<a href="#pgAppHome" id="hlAppHome" class="ui-btn"></a>
<a href="#pgReview" id="hlReview" class="ui-btn itemSpecific"></a>
<a href="#pgLog" id="hlActivityLog" class="ui-btn "></a>
<a href="#" id="hlLogoff" class="ui-btn"></a>
<a href="#" id="hlAbout" class="ui-btn"></a>
</div>
<!-- ===================================================================================== -->
<!-- /GLOBAL NAV PANEL -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- ABOUT DIALOG -->
<!-- ===================================================================================== -->
<div data-role="popup" id="puAbout" data-position="window" data-theme="a" data-overlay-theme="b" data-dismissible="false" style="max-width:500px;">
<div data-role="header" data-theme="a">
<h1></h1>
</div>
<div role="main" class="ui-content">
<h3 class="ui-title"></h3>
<img src="img/my_logo.jpg" style="float: right;"/>
<div style="margin-top: 5px; font-size: x-small" id="divAboutInfo">
<p>Version: <span id="aboutVersion" style="color: #B21317;"></span>, Language: <span id="aboutLanguage" style="color: #B21317;"></span></p>
<p>Language File</p>
<p><span id="aboutLanguageFile" style="color: #B21317;"></span></p>
<p>Form Definition</p>
<p><span id="aboutFormDefinitionFile" style="color: #B21317;"></span></p>
<p>Report File</p>
<p><span id="aboutReportFile" style="color: #B21317;"></span></p>
</div>
<a href="#" class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b" data-rel="back">Ok</a>
</div>
</div>
<!-- ===================================================================================== -->
<!-- /ABOUT DIALOG -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- GENERAL DIALOG -->
<!-- ===================================================================================== -->
<div data-role="popup" id="puDialog" data-position="window" data-theme="a" data-overlay-theme="b" data-dismissible="false" style="width: 300px;max-width: 500px;">
<div data-role="header">
<h1 id="puDialogTitle"></h1>
</div>
<div role="main" class="ui-content">
<p id="puDialogText"></p>
<a href="#" class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b" data-rel="back"></a>
</div>
</div>
<!-- ===================================================================================== -->
<!-- /GENERAL DIALOG -->
<!-- ===================================================================================== -->
<!-- ===================================================================================== -->
<!-- TERMS & CONDITIONS DIALOG -->
<!-- ===================================================================================== -->
<div data-role="popup" id="puTCs" data-position="window" data-theme="a" data-overlay-theme="b" data-dismissible="false" data-history="false" style="width: 500px;max-width: 500px;">
<div data-role="header">
<h1 id="puTCsTitle"></h1>
</div>
<div role="main" class="ui-content">
<div id="puTCsText"></div>
<a href="#" id="puTCsAgree" class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b"></a>
</div>
</div>
<!-- ===================================================================================== -->
<!-- /TERMS & CONDITIONS DIALOG -->
<!-- ===================================================================================== -->
<script type="text/javascript" src="js/thirdparty/require.js" data-main="js/appstart"></script>
</body>
</html>