-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
34 lines (34 loc) · 1.25 KB
/
archive.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
<html>
<head>
<link rel="stylesheet" href="https://p.trellocdn.com/power-up.min.css">
<style>
input[type="checkbox"] { margin-right: 5px; vertical-align: middle; }
input[type="text"] { padding: 8px 12px; }
input[type="text"].noshadow:focus { box-shadow: none; }
label.text { margin-top: 4px; margin-bottom: 8px; }
form { margin-bottom: 2px; }
.results { margin-top: 16px; margin-bottom: 12px; }
button { margin-bottom: 0; }
</style>
</head>
<body>
<div id="content">
<form id="search">
<label for="listName" class="text">List name pattern:</label>
<input name="name" type="text" id="listName" class="noshadow" autofocus />
<button type="submit" class="mod-primary">Search</button>
</form>
<form id="archive" hidden>
<div id="archivalList" class="results">
</div>
<button type="submit" class="mod-danger" id="archiveSubmit">Archive Selected</button>
</form>
<div id="notFound" hidden>
Oops, nothing matched. All archived?
</div>
</div>
<script src="https://p.trellocdn.com/power-up.min.js"></script>
<script src="./js/appkey.js"></script>
<script src="./js/archive.js"></script>
</body>
</html>