-
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 da página forma_contribuicao.php para o usuário decidir qual …
…forma de pagamenmento será realizada [Issue #767]
- Loading branch information
1 parent
a0b7161
commit 4619ea8
Showing
2 changed files
with
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
$title = 'Escolha sua forma de contribuição'; | ||
require_once './templates/header.php'; | ||
|
||
?> | ||
<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'); ?> | ||
|
||
<div class="doacao_boleto"> | ||
<h3>Escolha sua forma de contribuição</h3> | ||
|
||
<a class="btn btn-secondary m-2" href="./boleto.php" role="button">Boleto Único</a> | ||
<a class="btn btn-secondary m-2" href="./mensalidade.php" role="button">Carnê de Mensalidades</a> | ||
<a class="btn btn-secondary m-2" href="./pix.php" role="button">PIX</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<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> | ||
<?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