-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 1.63 KB
/
index.html
File metadata and controls
56 lines (50 loc) · 1.63 KB
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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TaskForge — open-source task tracker</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="app-header">
<div class="header-copy">
<h1>TaskForge</h1>
<p class="tagline">A tiny task list that lives in your browser.</p>
</div>
<div class="auth-panel" aria-live="polite">
<img id="auth-avatar" class="auth-avatar" hidden />
<span id="auth-status" class="auth-status">
Tasks are stored on this device.
</span>
<button id="auth-action" class="auth-action" type="button">
Sign in with GitHub
</button>
</div>
</header>
<main class="app-main">
<p id="auth-message" class="auth-message" hidden></p>
<form id="task-form" class="task-form" aria-label="Add a new task">
<input
id="task-input"
type="text"
name="title"
placeholder="What needs doing?"
autocomplete="off"
required
/>
<button type="submit">Add</button>
</form>
<ul id="task-list" class="task-list" aria-live="polite"></ul>
<p id="empty-state" class="empty-state" hidden>
No tasks yet. Add one above to get started.
</p>
</main>
<footer class="app-footer">
<a href="https://github.com/CodeBountyOrg/taskforge-demo">
github.com/CodeBountyOrg/taskforge-demo
</a>
</footer>
<script type="module" src="src/app.js"></script>
</body>
</html>