-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset_task.html
More file actions
26 lines (26 loc) · 672 Bytes
/
set_task.html
File metadata and controls
26 lines (26 loc) · 672 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://p.trellocdn.com/power-up.min.css" />
<style>
select {
height: 30px;
}
</style>
<script src="https://p.trellocdn.com/power-up.min.js"></script>
</head>
<body>
<form id="setTaskForm">
<label for="taskId">Task:</label>
<select id="taskId" name="taskId">
<option value="">--clear--</option>
</select>
<button type="submit" class="mod-primary">Save</button>
</form>
<script src="./dist/set_task.js"></script>
<script type="text/javascript">
set_task();
</script>
</body>
</html>