-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelatorio.html
More file actions
22 lines (22 loc) · 767 Bytes
/
Copy pathrelatorio.html
File metadata and controls
22 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Relatório de Registros</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Relatório de Registros</h1>
<div id="registros-container"></div>
<label for="start-date">Data Inicial:</label>
<input type="date" id="start-date">
<label for="end-date">Data Final:</label>
<input type="date" id="end-date">
<button id="btn-filtrar">Filtrar</button>
<button id="btn-ultima-semana">Última Semana</button>
<button id="btn-ultimo-mes">Último Mês</button>
<button id="btn-voltar">Voltar</button>
<script src="js/relatorio.js"></script>
</body>
</html>