-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtarefas.html
More file actions
82 lines (74 loc) · 2.55 KB
/
tarefas.html
File metadata and controls
82 lines (74 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="pt-BR">
<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" />
<!-- ----------------------------- estilos CSS ----------------------------- -->
<link rel="stylesheet" href="./styles/tarefas.css" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<!-- ------------------- Biblioteca de icones - Fontawesome -------------------- -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- ----------------------------- sweet alert ----------------------------- -->
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- CDN example (unpkg) -->
<title>To-Do App</title>
</head>
<body>
<div id="isLoading">
<span></span>
</div>
<header>
<nav>
<a href="#">Tarefas</a>
</nav>
<div class="user-info">
<p id="nome-usuario"></p>
<div class="user-image"><p id="nome-image"></p></div>
<img src="./assets/shutdown.png" id="closeApp" />
</div>
</header>
<main>
<form class="nova-tarefa">
<input id="novaTarefaInput" type="text" placeholder="Nova tarefa" />
<button id="novaTarefaButton">
<img src="./assets/plus.png" alt="Adicionar uma nova tarefa" />
</button>
</form>
<ul class="tarefas-pendentes">
<div id="skeleton">
<li class="tarefa">
<div class="not-done"></div>
<div class="descricao">
<p class="nome"></p>
<p class="timestamp"></p>
</div>
</li>
<li class="tarefa">
<div class="not-done"></div>
<div class="descricao">
<p class="nome"></p>
<p class="timestamp"></p>
</div>
</li>
<li class="tarefa">
<div class="not-done"></div>
<div class="descricao">
<p class="nome"></p>
<p class="timestamp"></p>
</div>
</li>
</div>
</ul>
<h2 class="titulo-terminadas">Tarefas terminadas</h2>
<ul class="tarefas-terminadas"></ul>
</main>
<script src="./scripts/main.js" type="module"></script>
</body>
</html>