-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompra.php
More file actions
executable file
·60 lines (48 loc) · 932 Bytes
/
compra.php
File metadata and controls
executable file
·60 lines (48 loc) · 932 Bytes
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
<?php
$header_title="Anuncie na Run For Your Tickets";
$header_css='<link rel="stylesheet" href="./CSS/compra.css">';
$nav1="Login";
$nav2="Eventos";
$nav3="Sobre Nós";
include("header.php");
?>
<div class="tickets">
<h1>Sua Compra</h1>
<dl>
<dt>Ingressos para o Evento:</dt>
<dd></dd>
<dt>Quantidade de Tickets:</dt>
<dd></dd>
<dt>Forma de Envio:</dt>
<dd></dd>
<dt>Vendedor:</dt>
<dd></dd>
</dl>
</div>
<div class="confirm">
<h1>Dados do Comprador</h1>
<dl>
<dt>Nome:</dt>
<dd></dd>
<dt>Email</dt>
<dd></dd>
<dt>Quantia de Tickets</dt>
<dd></dd>
<dt>Total da Compra</dt>
<dd></dd>
</dl>
</div>
<div class="payment">
<h1>Pagamento</h1>
<dl>
<dt>Forma de Pagamento:</dt>
<dd></dd>
<dt>Cartão de Crédito:</dt>
<dd></dd>
<dt>Boleto Bancário:</dt>
<dd></dd>
<dt>PayPal:</dt>
<dd></dd>
</dl>
</div>
</div>