-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompra.html
More file actions
142 lines (114 loc) · 5.97 KB
/
compra.html
File metadata and controls
142 lines (114 loc) · 5.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pago</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
</head>
<body>
<header id="header" class="d-flex align-items-center">
<div class="container d-flex justify-content-between align-items-center">
<div class="logo">
<h1><a href="index.html">Gestore</a></h1>
</div>
</div>
<div>
<nav id="navbar" class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header>
<main>
<div class="container">
<div class="row mt-3">
<div class="col">
<h2 class="d-flex justify-content-center mb-3">Realizar Compra</h2>
<form id="procesar-pago" action="#" method="post">
<div class="form-group row">
<label for="cliente" class="col-12 col-md-2 col-form-label h2">Cliente :</label>
<div class="col-12 col-md-10">
<input type="text" class="form-control" id="cliente"
placeholder="Ingresa nombre cliente" name="destinatario">
</div>
</div>
<div class="form-group row">
<label for="email" class="col-12 col-md-2 col-form-label h2">Correo :</label>
<div class="col-12 col-md-10">
<input type="text" class="form-control" id="correo" placeholder="Ingresa tu correo" name="cc_to">
</div>
</div>
<div id="carrito" class="form-group table-responsive" >
<table class="table" id="lista-compra" >
<thead>
<tr>
<th scope="col">Nombre</th>
<th scope="col">Precio</th>
<th scope="col">Cantidad</th>
<th scope="col">Sub Total</th>
<th scope="col"></th>
</tr>
</thead>
<tbody id="carritou" >
<tr>
<th colspan="3" scope="col" class="text-right">SUB TOTAL :</th>
<th scope="col">
<p id="subtotal"></p>
</th>
<!-- <th scope="col"></th> -->
</tr>
<tr>
<th colspan="3" scope="col" class="text-right">IGV :</th>
<th scope="col">
<p id="igv"></p>
</th>
<!-- <th scope="col"></th> -->
</tr>
<tr>
<th colspan="3" scope="col" class="text-right">TOTAL :</th>
<th scope="col">
<p id="total"></p>
</th>
<!-- <th scope="col"></th> -->
</tr>
</tbody>
</table>
</div>
<div class="row justify-content-center" id="loaders">
<img id="cargando" src="assets/img/cargando.gif" width="220">
</div>
<div class="row justify-content-between">
<div class="col-md-4 mb-2">
<a href="index.html" class="btn btn-info btn-block">Seguir comprando</a>
</div>
<div class="col-xs-12 col-md-4">
<input class="btn btn-success btn-block" id="comprar" value="Realizar compra">
</div>
</div>
</form>
</div>
</div>
</div>
</main>
<script type="text\javascript" src="assets/js/compra.js"></script>
</body>
</html>