-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventos.html
More file actions
60 lines (56 loc) · 2.16 KB
/
Copy patheventos.html
File metadata and controls
60 lines (56 loc) · 2.16 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/eventos.css">
<link rel="stylesheet" href="css/transicao.css">
<title>Calendário de Eventos</title>
</head>
<body>
<div vw class="enabled">
<div vw-access-button class="active"></div>
<div vw-plugin-wrapper>
<div class="vw-plugin-top-wrapper"></div>
</div>
</div>
<div class="container">
<!-- Calendário -->
<div class="containerCalendario">
<div class="navegacao">
<button class="anoAnterior">❮</button>
<span id="ano-atual"></span>
<button class="proximoAno">❯</button>
</div>
<h3 id="mesSelecionado"></h3>
<table id="calendario"></table>
</div>
<!-- Seção de Tarefas -->
<div class="lateralDireita">
<div class="containerEventos">
<input type="text" name="tarefa" id="AddTarefa" placeholder="Adicionar tarefa" style="text-align: center;">
<button id="addEvento">Adicionar Evento</button>
<ul id="listaEventos"></ul>
</div>
</div>
<!-- Meses do Ano e Botão de Sair -->
<div class="lateralEsquerda">
<ul id="meses">
<!-- Lista de meses será criada dinamicamente -->
</ul>
<a href="logado.html">
<button class="sair">Sair <i class="fa-solid fa-right-from-bracket"></i></button>
</a>
</div>
</div>
<div id="loading" class="loader" style="display: none;"></div>
<script src="js/eventos.js"></script>
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js"></script>
<script src="https://vlibras.gov.br/app/vlibras-plugin.js"></script>
<script src="js/transicao.js"></script>
<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>
</body>
</html>