-
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 dos componentes da página dinâmica 1 de mensalidade.php [Issue …
- Loading branch information
1 parent
b1b4ac8
commit bb27f56
Showing
7 changed files
with
85 additions
and
7 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,6 @@ | ||
<div class="container-contact100-form-btn"> | ||
<button class="contact100-form-btn btn-acao" id="avanca-<?=$tipoAvanca?>"> | ||
AVANÇAR | ||
<i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i> | ||
</button> | ||
</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 id="dia-vencimento" class="wrap-input100 validate-input bg1"> | ||
<span class="label-input100">Escolha uma data de vencimento *</span><br> | ||
<input type = 'radio' value ='1' name = 'dia' id='dia1'><span style='margin-right: 1.5em'>1</span> | ||
<input type = 'radio' value ='5' name = 'dia' id='dia5'><span style='margin-right: 1.5em'>5</span> | ||
<input type = 'radio' value ='10' name = 'dia' id='dia10'><span style='margin-right: 1.5em'>10</span> | ||
<input type = 'radio' value ='15' name = 'dia' id='dia15'><span style='margin-right: 1.5em'>15</span> | ||
<input type = 'radio' value ='20' name = 'dia' id='dia20'><span style='margin-right: 1.5em'>20</span> | ||
<input type = 'radio' value ='25' name = 'dia' id='dia25'><span style='margin-right: 1.5em'>25</span> | ||
</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,5 @@ | ||
<div id="parcela" class="wrap-input100 validate-input bg1"> | ||
<span class="label-input100">Quantidade de parcelas *</span> | ||
<input class="input100" type='number' id='parcelas' name='parcelas' placeholder="Digite a quantidade de parcelas aqui." required min="1"> | ||
<p id="avisa_parcelas"></p> | ||
</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,63 @@ | ||
<?php | ||
$title = 'Emitir boleto'; | ||
require_once './templates/header.php'; | ||
|
||
$textoTipoContribuicao = 'GERAR MENSALIDADE'; | ||
$tipoContribuicao = 'CARNE'; | ||
|
||
?> | ||
<div class="container-contact100"> | ||
<div class="wrap-contact100"> | ||
|
||
<!--Adiciona a logo e o título ao topo da página--> | ||
<?php include('./components/contribuicao_brand.php'); ?> | ||
|
||
<form id="formulario"> | ||
|
||
<input type="hidden" name="forma-contribuicao" id="forma-contribuicao" value="boleto"> | ||
|
||
<div id="pag1" class="wrap-input100"> | ||
<!--Adiciona a página de valor de contribuição, quantidade de parcelas e dia de vencimento--> | ||
<?php include('./components/contribuicao_valor.php'); ?> | ||
<?php include('./components/contribuicao_parcelas.php'); ?> | ||
<?php include('./components/contribuicao_dia_vencimento.php'); ?> | ||
|
||
<?php $tipoAvanca = 'valor'; include('./components/btn_avanca.php'); ?> | ||
</div> | ||
|
||
<div id="pag2" class="wrap-input100 hidden"> | ||
<!--Adiciona a página para identificação de Sócios PJ e PF--> | ||
<?php include('./components/contribuicao_documento.php'); ?> | ||
</div> | ||
|
||
<div id="pag3" class="wrap-input100 hidden"> | ||
<!--Adiciona a página para coleta do nome, data de nascimento, telefone e e-mail--> | ||
<?php include('./components/contribuicao_contato.php'); ?> | ||
</div> | ||
|
||
<div id="pag4" class="wrap-input100 hidden"> | ||
<!--Adiciona a página para coleta do CEP, rua, número, bairro, estado, cidade e complemento--> | ||
<?php include('./components/contribuicao_endereco.php'); ?> | ||
</div> | ||
|
||
<div id="pag5" class="wrap-input100 hidden"> | ||
<!--Adiciona a página para agradecimento e confirmação da geração do boleto--> | ||
<?php include('./components/contribuicao_confirmacao.php'); ?> | ||
</div> | ||
</div> | ||
|
||
</form> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js"></script> | ||
|
||
<script src="../vendor/bootstrap/js/bootstrap.min.js"></script> | ||
|
||
<script src="../vendor/select2/select2.min.js"></script> | ||
<script src="../public/js/mascara.js"></script> | ||
<script src="../public/js/util.js"></script> | ||
<script src="../public/js/mensalidade.js"></script> | ||
<!--Busca cep--> | ||
<script src="../../../Functions/busca_cep.js"></script> | ||
<?php | ||
require_once './templates/footer.php'; | ||
?> |
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