-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Criação do componente contribuicao_documento.php [Issue #767]
- Loading branch information
1 parent
cdf667a
commit ab03b38
Showing
2 changed files
with
35 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div class="centralizar"> | ||
<input class="radio" type="radio" id="op_cpf" value="fisica" name="opcao" checked><label class="label" for="op_cpf">PESSOA FÍSICA</label> | ||
<input class="radio" type="radio" id="op_cnpj" value="juridica" name="opcao"><label class="label" for="op_cnpj">PESSOA JURÍDICA</label><br><br> | ||
</div> | ||
<div id="cpf" class="wrap-input100 validate-input bg1" data-validate="Digite um documento válido!"> | ||
<span class="label-input100">Digite um documento CPF*</span> | ||
<input class="input100" type="text" name="dcpf" id="dcpf" class="text required" placeholder="Ex: 222.222.222-22" onkeyup="return Onlynumbers(event)" onkeypress="mascara('###.###.###-##',this,event)" maxlength="14" required><span id="avisa_cpf"></span> | ||
</div> | ||
<div id="cnpj" class="wrap-input100 validate-input bg1 hidden" data-validate="Digite um documento válido!"> | ||
<span class="label-input100"> Digite um documento CNPJ *</span> | ||
<input class="input100" type="text" name="dcpf" id="dcnpj" maxlength="18" class="form-control input-md" ng-m placeholder="Ex: 22.222.222/2222-22" onkeypress="mascara('##.###.###/####-##',this,event)"><span id="avisa_cnpj"></span> | ||
</div> | ||
<div class="container-contact100-form-btn"> | ||
<button class="contact100-form-btn" id="consultar-btn"> | ||
AVANÇAR | ||
<i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i> | ||
</button> | ||
</div> | ||
<div class="container-contact100-form-btn"> | ||
<button class="contact100-form-btn" id="voltar-btn"> | ||
<i style="margin-right: 15px; " class="fa fa-long-arrow-left m-l-7" aria-hidden="true"></i> VOLTAR | ||
</button> | ||
</div> |