-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (61 loc) · 2.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="https://fav.farm/☑️" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todo App</title>
<link rel="icon" type="image/png" href="./src/assets/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="./src/assets/favicon/favicon.svg" />
<link rel="shortcut icon" href="./src/assets/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="./src/assets/favicon/apple-touch-icon.png" />
<link rel="manifest" href="./src/assets/favicon/site.webmanifest" />
<meta name="description" content="Stay organized and achieve more. This todo-app keeps you on track and in charge.">
<meta property="og:url" content="https://cribepencheff.github.io/u05-todo-app/index.html">
<meta property="og:type" content="application">
<meta property="og:title" content="u05 ToDo app">
<meta property="og:description" content="Stay organized and achieve more. This todo-app keeps you on track and in charge.">
<meta property="og:image" content="https://cribepencheff.github.io/u05-todo-app/todo-share.webp">
</head>
<body>
<header id="header">
<img class="todo-logo" src="./src/assets/todo-logo.svg" width="41" height="40" alt="Todo App Logo">
<div class="user">
<picture class="icon">
<source srcset="./src/assets/icons/user.svg" media="(prefers-color-scheme: light)">
<img src="./src/assets/icons/user-lgt.svg" alt="User icon">
</picture>
<span class="user-email truncate"></span>
</div>
<button id="log-out" class="hide">Log out</button>
</header>
<div id="app">
<div id="todos" class="hide">
<form id="todo-form">
<input type="text" id="todo-input" name="todo-new" class="form-control" placeholder="Enter new task…">
<button id="add-todo-btn" class="btn-primary" disabled>
<picture class="icon">
<img src="./src/assets/icons/plus-lgt.svg" alt="Add task icon">
</picture>
Add task
</button>
<p class="form-instrucitions small">
* Enter at least 3 characters to add a task.
</p>
</form>
<h3 id="todo-list-heading" class="hide">
<span>My Tasks</span>
<button id="clear-list-btn">
<picture class="icon">
<source srcset="./src/assets/icons/clear-circle.svg" media="(prefers-color-scheme: light)">
<img src="./src/assets/icons/clear-circle-lgt.svg" alt="Clear list icon">
</picture>
Clear list
</button>
</h3>
<div id="todo-list"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>