-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport-problem.html
53 lines (50 loc) · 2.29 KB
/
report-problem.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="https://s3.amazonaws.com/codiqa-cdn/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="my.css" />
<script src="https://s3.amazonaws.com/codiqa-cdn/jquery-1.7.2.min.js">
</script>
<script src="https://s3.amazonaws.com/codiqa-cdn/mobile/1.2.0/jquery.mobile-1.2.0.min.js">
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="report-problem">
<div id="cache-detail-header" data-theme="a" data-role="header">
<a data-role="button" data-direction="reverse" data-transition="slide" href="cache-detail.html" data-icon="arrow-l" data-iconpos="left" class="ui-btn-left">
<span id="back-button-text">Cache name goes here!</span>
</a>
<h3>
Report a Problem
</h3>
</div>
<div data-role="content">
<!-- <a data-role="button" href="#page1">Cache is damaged</a>
<a data-role="button" href="#page1">Cache has been moved</a>
<a data-role="button" href="#page1">I think the cache is gone</a>
<div>Reported issues:</div>
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
Issue #1
</li>
<li data-theme="c">
Issue #2
</li>
</ul>-->
<ul id="report-problem-collection" data-role="listview" data-divider-theme="b" data-inset="true">
</ul>
<div data-role="fieldcontain">
<textarea style="width:100%" id="report-problem-text-area" placeholder="Report text..."></textarea>
</div>
<a data-role="button" id="report-problem-button">Report</a>
</div>
</div>
</body>
</html>