-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.php
127 lines (116 loc) · 3.43 KB
/
resume.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
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
<?php
require_once ('classes/autoload.php');
use classes\myWallet;
use classes\savings;
use classes\investments;
session_start();
$savings = new savings();
$investments = new investments();
?>
<html>
<head>
<?php include ('includes/meta_head.php'); ?>
</head>
<body>
<header class="p-3 mb-3 border-bottom border-custom bg-custom-menu shadow-sm">
<div class="container">
<?php include ('includes/main_menu.php'); ?>
</div>
</header>
<div class="container">
<nav class="navbar bg-body-tertiary">
<div class="container-fluid">
<h2>Dashboard</h2>
</div>
</nav>
<div class="row mb-4">
<div class="col">
<div class="card border-custom shadow-sm">
<div class="card-body">
<div class="align-items-center row">
<div class="col">
<h6 class="card-title mb-3 text-muted text-uppercase fs-7">
Cartera
</h6>
<h5 class="card-subtitle mb-2 fs-4">
<?php
echo "$".number_format(0, 2);
?>
</h5>
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card border-custom shadow-sm">
<div class="card-body">
<div class="align-items-center row">
<div class="col">
<h6 class="card-title mb-3 text-muted text-uppercase fs-7">
Ahorros
</h6>
<h5 class="card-subtitle mb-2 fs-4">
<?php
$savings = $savings->getTotal();
echo "$".number_format($savings, 2);
?>
</h5>
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card border-custom shadow-sm">
<div class="card-body">
<div class="align-items-center row">
<div class="col">
<h6 class="card-title mb-3 text-muted text-uppercase fs-7">
Inversiones
</h6>
<h5 class="card-subtitle mb-2 fs-4">
<?php
$investments = $investments->getTotal();
echo '$'.number_format($investments, 2);
?>
</h5>
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card border-custom shadow-sm">
<div class="card-body">
<div class="align-items-center row">
<div class="col">
<h6 class="card-title mb-3 text-muted text-uppercase fs-7">
Ahorros + Inversion
</h6>
<h5 class="card-subtitle mb-2 fs-4">
<?php
echo '$'.number_format(($savings + $investments), 2);
?>
</h5>
</div>
</div>
</div>
</div>
</div>
</div> <!-- row -->
</div> <!-- container -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous">
</script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "i84qwphpao");
</script>
</body>
</html>