forked from interview-github/chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
38 lines (33 loc) · 1.07 KB
/
options.html
File metadata and controls
38 lines (33 loc) · 1.07 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
<!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="options.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="one-half column" style="margin-top: 20%">
<h4>JIRA Search Options</h4>
<p>
<input type="text" placeholder="enter a project" id="project" />
<input type="text" placeholder="enter a user" id="user" />
<button id="save">save</button>
</p>
<p>
<code id="status" hidden></code>
</p>
</div>
</div>
</div>
</body>
</html>