Skip to content

Commit

Permalink
Criação do componente contribuicao_valor.php [Issue #767]
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielPintoSouza committed Nov 14, 2024
1 parent 9eb280e commit cdf667a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 10 deletions.
28 changes: 18 additions & 10 deletions html/apoio/view/boleto.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,28 @@
<div class="container-contact100">
<div class="wrap-contact100">

<span id="logo_img"><?php if (!is_null($brand)) {
echo $brand->getImagem()->getHtml();
} ?></span>
<span class="contact100-form-title" id="titulo_pag"><?php if (!is_null($brand)) {
echo $brand->getMensagem();
} ?></span>
<span id="logo_img">
<?php
if (!is_null($brand)) {
echo $brand->getImagem()->getHtml();
}
?>
</span>
<span class="contact100-form-title" id="titulo_pag">
<?php
if (!is_null($brand)) {
echo $brand->getMensagem();
}
?>
</span>

<input type="hidden" name="forma-contribuicao" id="forma-contribuicao" value="boleto">

<div id="pag1" class="wrap-input100">
<?php include('./components/contribuicao_valor.php');?>
</div>

<div id="pag2" class="wrap-input100">

<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>
Expand All @@ -40,10 +52,6 @@
<i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i>
</button>
</div>
</div>

<div id="pag2" class="wrap-input100 hidden">
<div id="tabela-boletos"></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
Expand Down
11 changes: 11 additions & 0 deletions html/apoio/view/components/contribuicao_valor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

<div class="wrap-input100">
<label for="valor" class="label-input100">Com quanto deseja contribuir? <span class="obrigatorio">*</span></label>
<input type="number" class="input100" name="valor" id="valor" placeholder="Digite o valor da sua contribuição">
</div>
<div class="container-contact100-form-btn">
<button class="contact100-form-btn btn-acao" id="avanca-valor">
AVANÇAR
<i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i>
</button>
</div>

0 comments on commit cdf667a

Please sign in to comment.