-
Notifications
You must be signed in to change notification settings - Fork 0
/
pago.php
57 lines (41 loc) · 1.48 KB
/
pago.php
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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Productos</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" href="imagenes/icon-low.png" sizes="16x16">
<link rel="stylesheet" href="css/mystyles.css">
<link rel="stylesheet" href="css/login.css">
<link rel="stylesheet" href="css/modal.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/pago.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<?php
include('include/nav.php');
?>
<section class="section">
<h2 class="title">Usted esta comprando:</h2><br>
<?php
include('php_include/cartLogic.php');
if(!isset($_GET['c'])){
confirmarCompra();
echo '<a class="button is-info is large is-centered" href="pago.php?c=1">Confirmar Compra</a>';
}else{
comprar();
}
?>
</section>
<?php
include('include/footer.html');
?>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/jquery.scrollto@2.1.2/jquery.scrollTo.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/jquery.localscroll@2.0.0/jquery.localScroll.min.js"></script>
<script type="text/javascript" src="js/nav.js"></script>
</body>
</html>
<?php mysqli_close($connection); ?>