-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdashboard.html
184 lines (172 loc) · 9.6 KB
/
dashboard.html
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<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>Net Worth</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700,900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/36afc40636.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/dashboard.css">
<link rel="icon" type="image/x-icon" href="./img/Purple logo Group.png">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light container-fluid" id="header__nav">
<a class="navbar-brand p-3" href="index.html"><img src="./img/networth logo.svg"><span class=" text-light header__nav__brand ml-3 mt-2 font-weight-bold">NetWorth</span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto navbar__menu">
<form action="index.html">
<li class="nav-item active">
<button type="submit" class="m-3 pt-1 pl-3 pr-3 pb-1">Log out</button>
</li>
</form>
<!--<li class="nav-item">
<button class="m-3 pt-1 pl-3 pr-3 pb-1">Sign up</button>
</li>-->
</ul>
</div>
</nav>
</header>
<section>
<main class="container">
<div class="row">
<div class="col-xs-12 col-md-12 col-lg-12 text-center">
<p class="main__caption">Enter the monetary value of your assets and liabilities to calculate your Net Worth </p>
</div>
</div>
<div class="line-through"></div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 mt-3">
<form id="asset-form">
<h1 class="form-caption">Assets</h1>
<div class="form-group">
<label for="Investments">Investments</label>
<input type="number" class="form-control" id="Investments" placeholder="0 NGN">
</div>
<div class="form-group">
<label for="Cash">Cash</label>
<input type="number" class="form-control" id="Cash" placeholder="0 NGN">
</div>
<div class="form-group">
<label for="Bank Account">Bank Account</label>
<input type="number" class="form-control" id="Bank Account" placeholder="0 NGN">
</div>
<div class="form-group">
<label for="Real Estate">Real Estate</label>
<input type="number" class="form-control" id="Real Estate" placeholder="0 NGN">
</div>
<!-- Button trigger modal -->
<!-- Modal -->
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Add New Asset</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<input class="form-control" id="new-asset" placeholder="Enter Asset Title">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" id="add-asset">Add Asset</button>
</div>
</div>
</div>
</div>
</form>
<span class="add-form-element" data-toggle="modal" data-target="#modal">Add new field <i class="fas fa-plus" style="color: #6D1AD8"></i></span>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 mt-3">
<form id="liabilities-form">
<h1 class="form-caption">Liabilties</h1>
<div class="form-group">
<label for="Loans">Loans</label>
<input type="number" class="form-control " id="Loans" placeholder="0 NGN">
</div>
<div class="form-group">
<label for="Mortgages">Mortgages</label>
<input type="number" class="form-control" id="Mortgages" placeholder="0 NGN">
</div>
<div class="form-group">
<label for="Utility bills">Utility bills</label>
<input type="number" class="form-control" id="Utility bills" placeholder="0 NGN">
</div>
<div class="form-group">
<label for="Other debts">Other debts</label>
<input type="number" class="form-control" id="Other debts" placeholder="0 NGN">
</div>
<div class="modal fade" id="modal-liability" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Add New Liability</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<input class="form-control" id="new-liability" placeholder="Enter Liability Title">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" id="add-liability">Add Liability</button>
</div>
</div>
</div>
</div>
</form>
<span class="add-form-element" data-toggle="modal" data-target="#modal-liability">Add new field <i class="fas fa-plus" style="color: #6D1AD8"></i></span>
<br><br>
</div>
<div>
<a class="get-started" target="blank" href="https://hngi.github.io/deimos-net-worth-web-app/certificate.html"> Get Net Worth</a>
</div>
<br><br><br>
</div>
</main>
</section>
<!-- Footer -->
<footer class="page-footer font-small special-color-dark pt-4">
<div class="container">
<ul class="list-unstyled list-inline text-center">
<li class="list-inline-item">
<a class="btn-floating btn-fb mx-1">
<i class="fab fa-facebook-f"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-tw mx-1">
<i class="fab fa-twitter"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-gplus mx-1">
<i class="fab fa-google-plus-g"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-li mx-1">
<i class="fab fa-linkedin-in"> </i>
</a>
</li>
</ul>
</div>
<div class="footer-copyright text-center py-3">© 2019 Copyright:
<a href="http://34.89.207.113/index.php"> NetWorth.com</a>
</div>
</footer>
<!-- Footer -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="js/dashboard.js"></script>
</body>
</html>