frontend-1

ref: master

./tasks.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="pt-br">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Lista de Tarefas</title>
  <link rel="stylesheet" href="css/reset.css">
  <link rel="stylesheet" href="css/layout.css">
  <link rel="stylesheet" href="css/header.css">
  <link rel="stylesheet" href="css/footer.css">
  <link rel="stylesheet" href="css/form.css">
  <link rel="stylesheet" href="css/tasks.css">
</head>
<body>
  <header>
    <h1>Gerenciador de Tarefas</h1>
    <button id="menuToggle"></button>
    <nav>
      <ul class="hidden">
        <li><a href="index.html">Início</a></li>
        <li><a href="tasks.html">Tarefas</a></li>
        <li><a href="weather.html">Previsão do Tempo</a></li>
      </ul>
    </nav>
  </header>

  <main>
    <section id="add-task">
      <h2>Adicionar Nova Tarefa</h2>

      <form id="task-form">
        <label for="task-title">Título: <small class="required">*</small></label>
        <input type="text" id="task-title" name="title" placeholder="Comprar legumes">
        <small class="error-message hidden">O título é obrigatório.</small>

        <label for="task-desc">Descrição:</label>
        <textarea id="task-desc" name="description" placeholder="Ir no Cachoeirense, pegar cebolas" rows="10"></textarea>
        <small class="error-message hidden">A descrição é obrigatória.</small>

        <label for="task-deadline">Prazo:</label>
        <input type="date" id="task-deadline" name="deadline">
        <small class="error-message hidden">O prazo deve ser uma data válida no futuro.</small>

        <label for="task-priority">Prioridade:</label>
        <select id="task-priority" name="priority" required>
          <option value="alta">Alta</option>
          <option value="media">Média</option>
          <option value="baixa">Baixa</option>
        </select>
        <small class="error-message hidden">Por favor, selecione uma prioridade.</small>

        <div class="actions">
          <button type="submit">Adicionar Tarefa</button>
        </div>
      </form>
    </section>

    <section>
      <h2>Lista de Tarefas</h2>

      <div id="task-summary">
        Nenhuma tarefa adicionada
      </div>

      <div class="task-filters">
        <label for="priority-filter">Filtrar por Prioridade:</label>
        <select id="priority-filter">
          <option value="Todas">Todas</option>
          <option value="alta">Alta</option>
          <option value="media">Média</option>
          <option value="baixa">Baixa</option>
        </select>
      </div>

      <div id="task-list">
        <ul></ul>
      </div>
    </section>
  </main>

  <footer>
    <p>© 2025</p>
  </footer>

  <script src="js/menu.js" defer></script>
  <script src="js/tasks.js" defer></script>
</body>
</html>