forked from prometheas/jira-2-omnifocus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
77 lines (67 loc) · 1.79 KB
/
options.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
<html>
<head>
<title>JIRA 2 OmniFocus Options</title>
<style type="text/css">
html
{
background-color: lightgray;
}
body {
background-color: white;
border-radius:1em;
margin:1em auto;
max-width: 40em;
padding:1em;
}
body > header
{
background: transparent url('images/extension-icon.png') no-repeat;
padding: 10px;
padding-left: 120px;
}
h1
{
margin-top:0;
}
#buttons
{
margin-top:1em;
}
#maildrop-address.invalid
{
color:red;
}
</style>
</head>
<body>
<header>
<h1>JIRA 2 OmniFocus</h1>
<p>Send tasks from JIRA to your OmniFocus inbox! Please submit bugs <a href="https://github.com/prometheas/jira-2-omnifocus/issues">here</a>.</p>
<p>Please rate this extension.</p>
</header>
<section>
<header>
<h2>Mail Drop</h2>
</header>
<p>JIRA 2 Omnifocus supports the use of <a href="http://www.omnigroup.com/blog/deliver-actions-to-your-omnifocus-inbox-with-mail-drop" target="_blank">Mail Drop</a>, in case you don't have the luxury of using your Mac.</p>
<input type="checkbox" name="use-maildrop" id="use-maildrop" />
<label for="use-maildrop">Use Mail Drop</label>
<input type="text" name="maildrop-address" id="maildrop-address" placeholder="your-address" pattern="^\w+$">@sync.omnigroup.com
</section>
<section id="buttons">
<button id="reset">Reset</button>
<button id="save">Save</button>
<span id="status"></span>
</section>
<section>
<header>
<h2>Donations</h2>
<p>Do you enjoy the plugin? That's awesome! Please leave a review. If you'd like to
help support development, I'll gladly accept Paypal payments or Amazon gift cards.
You may send either one to <strong>john *at* prometheas #dot# com</strong>.</p>
</header>
</section>
<script src="js/zepto.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>