-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e047d5
commit 53f9cf1
Showing
7 changed files
with
206 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Exibição de mensagens</title> | ||
</head> | ||
<body> | ||
|
||
<h1>Relatórios Smarters</h1> | ||
<h4>Mensagem <span>recebidas</span></h4> | ||
<h4>Mensagem <span>Enviadas</span></h4> | ||
|
||
<div> | ||
<div> | ||
<div id="messagesPerDay"></div> | ||
<div id="TotalSend"></div> | ||
</div> | ||
</div> | ||
|
||
<label for="inputYear">Seleciona</label> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,89 @@ | ||
* { | ||
margin: o; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
|
||
background-color: rgb(202, 160, 185); | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
font-size: 60px; | ||
font-family: 'Courier New', Courier, monospace; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 40px; | ||
padding: 10px; | ||
} | ||
|
||
.data-container { | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
padding: 10px; | ||
margin-top: 10px; | ||
max-width: 600px; | ||
} | ||
|
||
.listStyle { | ||
padding: 25px; | ||
text-align: left; | ||
border: 1px solid; | ||
border-radius: 10px; | ||
width: 190px; | ||
height: 150px; | ||
margin: 40px; | ||
} | ||
|
||
.filtro { | ||
|
||
text-align: center; | ||
display: inline-flexbox; | ||
|
||
|
||
} | ||
|
||
#tokenInput { | ||
|
||
|
||
height: 15px; | ||
width: 300px; | ||
left: 50px; | ||
} | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
.controlerpage { | ||
body { | ||
background-color: rgb(77, 125, 165); | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
background-color: pink; | ||
width: 870px; | ||
padding: 10px; | ||
top: 0px; | ||
} | ||
|
||
ul { | ||
h1 { | ||
text-align: center; | ||
font-size: 60px; | ||
font-family: 'Courier New', Courier, monospace; | ||
margin: 20px 0; | ||
color: #333; | ||
} | ||
|
||
font-size: 20px; | ||
list-style-type: circle; | ||
list-style-position: inside; | ||
background: rgb(197, 222, 231); | ||
} | ||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 40px; | ||
padding: 10px; | ||
} | ||
|
||
.data-container { | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
padding: 20px; | ||
margin-top: 10px; | ||
max-width: 600px; | ||
background-color: white; | ||
} | ||
|
||
.controlerpage { | ||
background-color: #fff; | ||
width: 90%; | ||
max-width: 870px; | ||
padding: 20px; | ||
margin: 20px auto; | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.input-group { | ||
display: flex; | ||
flex-direction: column; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.input-group label { | ||
margin-bottom: 5px; | ||
font-weight: bold; | ||
} | ||
|
||
.input-group input { | ||
padding: 10px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
} | ||
|
||
.btn { | ||
display: block; | ||
width: 100%; | ||
padding: 15px; | ||
background-color: #007bff; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
text-align: center; | ||
} | ||
|
||
.btn:hover { | ||
background-color: #0056b3; | ||
} | ||
|
||
ul { | ||
font-size: 20px; | ||
list-style-type: circle; | ||
list-style-position: inside; | ||
background: rgb(197, 222, 231); | ||
padding: 20px; | ||
border-radius: 10px; | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters