-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagamentos.html
60 lines (56 loc) · 2.19 KB
/
pagamentos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
layout: default
title: Pague contas com Bitcoins
id: pagar
---
<main class="content container">
<article class="primary">
<h1>Pague contas com Bitcoin</h1>
<h2>Informe os dados do seu boleto e da sua carteira.</h2>
<form id="compre-bitcoins" action="#" method="post" onsubmit="return validateForm()">
<fieldset>
<p>
<label for="full-name">Nome completo*</label>
<input id="full-name" name="full-name" type="text" placeholder="Seu nome e sobrenome" required />
</p>
<p>
<label for="cpf">CPF*</label>
<input id="cpf" name="cpf" type="text" placeholder="Seu CPF, apenas números" required />
<span id="full-name-error-message">Este campo é de preenchimento obrigatório.</span>
</p>
<p>
<label for="phone">Telefone*</label>
<input id="phone" name="phone" type="text" placeholder="(DDD) 00000-0000" />
</p>
<p>
<label for="email">Email*</label>
<input id="email" name="email" type="email" placeholder="Seu email" required />
</p>
<p>
<label for="bar-code">Código de Barras*</label>
<input id="bar-code" name="bar-code" type="text" placeholder="Informe o número do código de barras, sem pontos ou espaços" />
</p>
<p>
<label for="expiation-date">Data de Vencimento*</label>
<input id="expiation-date" name="expiation-date" type="text" placeholder="dd/mm/aaaa" />
</p>
<p>
<label for="brl-value">Valor*</label>
<input id="brl-value" name="brl-value" type="text" />
</p>
</fieldset>
<div class="submit-section">
<div class="total-value">
<p>Total: R$ <span class="brl-final-value">0,00</span></p>
<p class="terms">
<input type="checkbox" id="terms" name="terms" value="true" /> <label for="terms">Li e concordo com os <a href="{{ "termos.html" | prepend: site.url }}" title="Termos de Uso - {{ site.title }}">Termos de uso</a>.
</p>
</div>
<input type="submit" value="Finalizar" />
</div>
</form>
</article>
<aside class="secondary">
{% include widgets.html %}
</aside>
</main>