-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 972 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trello</title>
<link rel="stylesheet" href="index.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://api.trello.com/1/client.js?key=da1cd610f8de5fbba880a1e45dd8f33c"></script>
</head>
<body>
<header>
<h1>FamilySearch Research Tasks</h1>
<button id="login"><img src="trello-mark-white.svg">Connect to Trello</button>
</header>
<div id="content">
<div id="list-title"></div>
<div id="list"></div>
<a id="new-card-link" href="#">Add a card…</a>
<div id="new-card">
<textarea id="new-card-title"></textarea>
<button id="new-card-button">Add</button>
</div>
</div>
<div id="loading" class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
<script src="index.js"></script>
</body>
</html>