-
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_contato.php
- Loading branch information
1 parent
e0a8d11
commit 0b725f2
Showing
2 changed files
with
34 additions
and
0 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,29 @@ | ||
<div class="wrap-input100"> | ||
<label for="nome" class="label-input100">Nome <span class="obrigatorio">*</span></label> | ||
<input type="text" class="input100" name="nome" id="nome" placeholder="Informe seu nome completo"> | ||
</div> | ||
<div class="wrap-input100"> | ||
<label for="data_nascimento" class="label-input100">Data de Nascimento <span class="obrigatorio">*</span></label> | ||
<input type="date" class="input100" name="data_nascimento" id="data_nascimento" min="1900-01-01" max="<?= date('Y-m-d') ?>"> | ||
</div> | ||
<div class="wrap-input100"> | ||
<label for="email" class="label-input100">E-mail <span class="obrigatorio">*</span></label> | ||
<input type="text" class="input100" name="email" id="email" placeholder="Informe seu e-mail"> | ||
</div> | ||
<div class="wrap-input100"> | ||
<label for="telefone" class="label-input100">Telefone <span class="obrigatorio">*</span></label> | ||
<input type="text" class="input100" name="telefone" id="telefone" placeholder="Informe seu número de telefone para contato" onkeypress="mascara('(##)#####-####',this,event); return Onlynumbers(event)" maxlength="14"> | ||
</div> | ||
<div class="container-contact100-form-btn"> | ||
<button class="contact100-form-btn btn-acao" id="avanca-contato"> | ||
AVANÇAR | ||
<i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i> | ||
</button> | ||
|
||
<div class="container-contact100-form-btn"> | ||
<button class="contact100-form-btn btn-voltar" id="volta-cpf"> | ||
<i style="margin-right: 15px; " class="fa fa-long-arrow-left m-l-7" aria-hidden="true"></i> | ||
VOLTAR | ||
</button> | ||
</div> | ||
</div> |