-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 1.84 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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./icon.svg" type="image/x-icon">
<title>Quebra de Chave de Acesso</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="cabecalho">
<h2>Quebrar Chave de Acesso da Nota Fiscal</h2>
<p>Utilize esta ferramenta para quebrar várias chaves de acesso e verificar a autenticidade, garantindo que o formato das chaves esteja consistente e detalhando suas composições.</p>
</div>
<div class="card">
<form id="chaveForm">
<label for="chaveInput">Digite ou cole várias Chaves de Acesso (44 dígitos cada, uma por linha):</label>
<textarea id="chaveInput" rows="5" required></textarea>
<button type="submit">Quebrar chaves</button>
</form>
<div id="resultado">
<table id="tabelaResultado" border="1" cellpadding="4">
<thead>
<tr>
<th>Chave</th>
<th>UF (Estado)</th>
<th>Ano de Emissão</th>
<th>Mês de Emissão</th>
<th>CNPJ do Emitente</th>
<th>Modelo do Documento</th>
<th>Série</th>
<th>Número do Documento</th>
<th>Código Numérico</th>
<th>Dígito Verificador</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<button id="copiarDados">Copiar dados da tabela</button>
</div>
<footer>Desenvolvido por UXpert Soluções Digitais.</footer>
<script src="./main.js"></script>
</body>
</html>