Skip to content

Commit dfacd68

Browse files
authored
Add Simulado Pagar
1 parent e6a33c1 commit dfacd68

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

TeaPayments/templates/pagar.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Pagamento - TeaPayments</title>
7+
</head>
8+
<body>
9+
<div class="container-pagar">
10+
<h1>Pagamento do Produto</h1>
11+
<h2>Selecione a Forma de Pagamento</h2>
12+
<select name="Produtos">
13+
<option value="Selecione-1">Selecione a Forma de Pagamento</option>
14+
<option value="Crédito">Crédito</option>
15+
<option value="Pix">Pix</option>
16+
<option value="Débito">Débito</option>
17+
<option value="PicPay">PicPay</option>
18+
<option value="MercadoPago">Mercado Pago( Not API )</option>
19+
</select>
20+
<button><a href="/compracerta">Pagar</a></button>
21+
</div>
22+
<style>
23+
body {
24+
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
25+
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
26+
sans-serif;
27+
}
28+
29+
.container-pagar {
30+
background: white;
31+
border: 2px solid rgb(0, 145, 255);
32+
border-radius: 12px;
33+
padding: 20px 30px;
34+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
35+
text-align: center;
36+
align-items: center;
37+
width: 300px;
38+
}
39+
</style>
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)