forked from interview-github/chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
50 lines (45 loc) · 1.6 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JIRA Quick Search</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="icon" type="image/png" href="images/favicon.png">
<script src="main.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="twelve columns" style="margin-top: 20%">
<h4>Search JIRA</h4>
<h5>Ticket Status Query</h5>
<p>
<input type="search" placeholder="enter a project" id="project" />
<select id="statusSelect">
<option value="1">Open</option>
<option value="3">In Progress</option>
</select>
<label> for longer than <input type="number" id="daysPast" min="0" max="20" /> days</label>
<input type="submit" value="query" id="query" />
</p><hr /><p>
<h5>JIRA Activity Query</h5>
<input type="search" placeholder="enter a user" id="user" />
<input type="submit" value="get JIRA Activity" id="feed" />
</p>
</div>
</div>
<div class="row">
<div class="twelve columns">
<p><span id="status" hidden /></p>
<div id="query-result" hidden></div>
</div>
</div>
</div>
</body>
</html>