forked from trello-archive/power-up-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
28 lines (28 loc) · 971 Bytes
/
settings.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
<html>
<head>
<link rel="stylesheet" href="https://trello.com/power-ups/power-up.css">
<script src="https://trello.com/power-ups/power-up.min.js"></script>
</head>
<body>
<div id="content">
<p>Shared - Select a fruit</p>
<select id="fruit">
<option value="apple">Apple</option>
<option value="banana">Banana</option>
<option value="date">Date</option>
<option value="lemon">Lemon</option>
<option value="pineapple">Pineapple</option>
</select>
<p>Private - Select a vegetable</p>
<select id="vegetable">
<option value="broccoli">Broccoli</option>
<option value="corn">Corn</option>
<option value="kale">Kale</option>
<option value="onion">Onion</option>
<option value="spinach">Spinach</option>
</select>
<button id="save" class="mod-primary">Save</button>
</div>
<script src="./js/settings.js"></script>
</body>
</html>