-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/smarts.css">
<title>Exibição de Dados da API</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
</head>
<body>
<h1>Relatório Smarters</h1>
<div class="container">
<div id="lastUpdate"></div>
<div id="conversationsSummary"></div>
<div id="totalConversations"></div>
<br>
</div>
<div class="controlerpage">
<div class="input-group">
<label for="yearInput">Selecione o ano:</label>
<input type="number" id="yearInput" name="yearInput" min="2010" max="2100" value="2024">
</div>
<div class="input-group">
<label for="monthInput">Selecione o mês:</label>
<input type="number" id="monthInput" name="monthInput" min="1" max="12" value="3">
</div>
<div class="input-group">
<label for="tokenInput">Insira o token:</label>
<input type="text" id="tokenInput" name="tokenInput">
</div>
<button class="btn" onclick="filterByYearMonth()">Gerar request</button>
<br>
<button class="btn" onclick="generatePDF()">Gerar PDF</button>
</div>
<script src="luffy.js"></script>
</body>
</html>