-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(geradores): adiciona demais geradores
- Loading branch information
1 parent
31509cb
commit 4621fc6
Showing
31 changed files
with
442 additions
and
4,491 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
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
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
Large diffs are not rendered by default.
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
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
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
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,10 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick=" | ||
let b = banco(); | ||
document.getElementById('vlrGerado').value = `${b.codigoBanco} - ${b.nomeBanco}`; toggleIcon();"> | ||
Gerar Banco | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,9 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick=" | ||
document.getElementById('vlrGerado').value = cartaoCredito(true).numero; toggleIcon();"> | ||
Gerar Cartão de Crédito | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = cep(true); toggleIcon();"> | ||
Gerar CEP | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = cnh(true); toggleIcon();"> | ||
Gerar CNH | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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
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,9 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = cns(true); toggleIcon();"> | ||
Gerar CNS | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> | ||
<p><small>Cartão Nacional Saúde</small></p> |
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,6 +1,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = cpf(true); toggleIcon();">Gerar CPF</button> | ||
<button onclick="document.getElementById('vlrGerado').value = cpf(true); toggleIcon();"> | ||
Gerar CPF | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = email(); toggleIcon();"> | ||
Gerar E-mail | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = endereco(true); toggleIcon();"> | ||
Gerar Endereço | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = inscricaoEstadual(); toggleIcon();"> | ||
Gerar Inscrição Estadual | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = paragrafo(5,8); toggleIcon();"> | ||
Gerar Parágrafos | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = passaporte(true); toggleIcon();"> | ||
Gerar Passaporte | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = pis(true); toggleIcon();"> | ||
Gerar PIS | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = placaAntiga(true); toggleIcon();"> | ||
Gerar Placa Antiga | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = placaMercosul(true); toggleIcon();"> | ||
Gerar Placa MERCOSUL | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = renavam(); toggleIcon();"> | ||
Gerar RENAVAM | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = rg(true); toggleIcon();"> | ||
Gerar RG | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,8 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = sentenca(10); toggleIcon();"> | ||
Gerar Sentença | ||
</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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,7 @@ | ||
<div class="input-container"> | ||
<input id="vlrGerado" class="input-gerador" type="text" readonly><br><br> | ||
<i id="iconCopy" class="icon icon-16 icon-copy" onclick="copiarTexto() "></i> | ||
<button onclick="document.getElementById('vlrGerado').value = tituloEleitor(true); toggleIcon();"> | ||
Gerar Título de Eleitor</button> | ||
<div id="msgCopiado" class="copiado">Copiado!</div> | ||
</div> |
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
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
Oops, something went wrong.