forked from The-Monkeys-and-MAUD/Scrummo-Browser-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
31 lines (23 loc) · 839 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>Set Page Color Popup</title>
<link rel="stylesheet" type="text/css" href="src/css/popup.css">
</head>
<body>
<h1>Scrummo Settings</h1>
<p>Choose the point system and that best works for your agile estimation. These numbers will then display on Trello cards to aid in estimation and planning poker!</p>
<select id="pointSystem">
<option value="-1">Choose a point system</option>
<option value="0">Fibonacci</option>
<option value="1">Doubling</option>
<option value="2">Custom</option>
</select>
<ul id="choices">
</ul>
<input type="button" id="btnSave" value="Save">
<span id="status"></span>
<script src="src/libs/jquery/jquery.min.js"></script>
<script src="src/js/popup.js"></script>
</body>
</html>