-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
54 lines (51 loc) · 2.16 KB
/
order.html
File metadata and controls
54 lines (51 loc) · 2.16 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Day 76</title>
<style>
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing:border-box; }
html { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; font-size: 62.5%; }
* { margin: 0; padding: 0; list-style: none; outline: none; }
body { background: #000; color: #fff; font-family: Arial, Helvetica, sans-serif; }
.container { margin: 60px auto; max-width: 992px; width: 100%; }
</style>
<link rel="stylesheet" type="text/css" href="./day.css">
</head>
<body>
<div class="container" data-js="shop">
<header class="header">
<h1 class="title">Nerd Calistênico <span class="tagline">vendendo ideias desde 1986</h1>
</header>
<div class="content">
<h1 class="subtitle">Sua Compra</h1>
<table data-js="checkoutCart" class="shoppingCart">
<thead>
<tr>
<th scope="col">Item</th><th scope="col">Quantidade</th><th scope="col">Preço</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="pricing">
<p class="shipping"><strong>Envio</strong>: <span data-js="sshipping"></span></p>
<p class="subTotal"><strong>Total</strong>: <span data-js="stotal"></span></p>
</div>
<div class="userDetails">
<h2>Seus Dados</h2>
<div data-js="details" class="userDetailsContent"></div>
</div>
<form data-js="pagseguroForm" class="pagseguroForm" action="" method="post">
<button data-js="pagseguroBtn" class="submit">Pagar com PagSeguro</button>
</form>
</div>
<footer class="footer footer--static">Copyright © Nerd Calistenico</footer>
</div>
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./shop-helpers.js"></script>
<script src="./shop-dom.js"></script>
<script src="./day.js"></script>
</body>
</html>