forked from Q42/TrelloScrum
-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
29 lines (29 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./bootstrap.min.css"/>
<style>
body {
margin-left: 1em;
margin-right: 1em;
}
.container {
width: 300px;
}
</style>
</head>
<body>
<div class="container">
<form>
<fieldset>
<legend>Board settings</legend>
<label>Max. story points</label> <input type="number" value="4" class="input-mini" id="maxSize">
<label class="checkbox"><input type="checkbox" checked="checked" value="ghostcards" id="ghostCards"> Dim cards without storypoints</label>
<label class="checkbox"><input type="checkbox" checked="checked" value="ghostcards" id="labelCards"> Show labels with '***titles***' as marker cards</label>
<label class="checkbox"><input type="checkbox" checked="checked" value="showCardNumbers" id="showCardNumbers"> Display card numbers on the tickets </label>
</fieldset>
</form>
</div>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>