-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (41 loc) · 1.43 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="css/app.css" />
<link rel="icon" href="img/Trello_trash.ico" />
<title>Trello Cleanup</title>
</head>
<body>
<div id="confirm" class="hide">
<h2 id="confirmText"></h2>
<div id="btnGroup">
<button id="yes">YES</button><button id="no">CANCEL</button>
</div>
</div>
<a href="https://trello.com/" target="_blank"
><img src="img/trello-icon.png" alt="logo" id="logo"
/></a>
<main>
<h1>Trello Boards: <span>Bulk delete utility</span></h1>
<div id="header">
<h3 id="headerText">Click boards to select</h3>
<button id="delete">0 Selected</button>
</div>
<ul id="boardList"></ul>
</main>
<footer>
<a target="_blank" href="https://github.com/MakeItBack">
<div>
<p>Created in vanilla JavaScript by <span>MakeItBack</span></p>
<img src="img/github.svg" alt="github logo" />
</div>
</a>
</footer>
<script src="keys.js"></script>
<script src="app.js"></script>
</body>
</html>