-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
231 lines (228 loc) · 14.5 KB
/
index.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Expense Tracker</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
</head>
<body>
<div class="container">
<section class="header login-header-details">
<div class="row mt-5">
<form class="login-form">
<div class="row input-group input-group-sm">
<div class="col-auto ms-auto">
<button type="button" class="btn btn-outline-dark input-logout-btn">Logout</button>
</div>
</div>
</form>
</div>
<div class="row">
<div class="col-lg-5 col-md-12 col-sm-6 login-header-title pt-1 login-form-display">
<h4 class="welcome-message" style="margin-left:0">Welcome to your Expense Tracker</h4>
</div>
<div class="col-lg-7 col-md-12 col-sm-12">
<form class="login-form login-form-display">
<div class="row input-group input-group-sm ">
<div class="col-lg-4 col-md-12 col-sm-12 my-1">
<input type="text" class="form-control input-login-username" placeholder="username">
</div>
<div class="col-lg-4 col-md-12 col-sm-12 my-1">
<input type="password" class="form-control input-login-pin" placeholder="password">
</div>
<div class="col-lg-4 col-md-12 col-sm-12 my-1">
<button type="button" class="btn btn-outline-dark input-login-btn">Login</button>
</div>
</div>
</form>
</div>
</div>
</section>
<section class="main">
<div class="row mt-5 justify-content-md-center">
<div class="mb-4 col-lg-4 col-md-12 col-sm-12 account-summary">
<div class="card-widget">
<div class="card-widget-body">
<div class="dot me-3 bg-indigo"></div>
<div class="text">
<span class="transaction-income transaction-summary-text"></span>
<span class="text-muted text-uppercase small">Income</span>
</div>
<div class="col-auto ms-auto">
<div class="income-icon-background">
<i class="bi bi-wallet"></i>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 col-lg-4 col-md-12 col-sm-12 account-summary">
<div class="card-widget">
<div class="card-widget-body">
<div class="dot me-3 bg-red"></div>
<div class="text">
<span class="transaction-expenses transaction-summary-text"></span>
<span class="text-muted text-uppercase small">Expenses</span>
</div>
<div class="col-auto ms-auto">
<div class="expense-icon-background">
<i class="bi bi-cash-coin"></i>
</div>
</div>
</div>
</div>
</div>
<div class="mb-4 col-lg-4 col-md-12 col-sm-12 account-summary">
<div class="card-widget card-widget-balance">
<div class="card-widget-body">
<div class="dot me-3 bg-green"></div>
<div class="text">
<span class="transaction-balance transaction-summary-text"></span>
<span class="text-muted text-uppercase small">Balance</span>
</div>
<div class="col-auto ms-auto">
<div class="balance-icon-background">
<i class="bi bi-wallet2"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-5 justify-content-md-center">
<div class="col-lg-7 mb-4 mb-lg-0 transaction-view">
<div class="container card-widget card-widget-transactions card-widget-header-included">
<div class="row mb-2 ml-2">
<h4 class="text-muted text-uppercase small">All Transactions</h4>
</div>
<div class="container">
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th scope="col">Type</th>
<th scope="col">Category</th>
<th scope="col">Date</th>
<th scope="col">Amount</th>
</tr>
</thead>
<tbody class="tbody container movements container-movements card-body pt-0">
<!-- <tr class="table-row-height">
<th scope="row">1</th>
<td class="col movements-type movements-type-deposit">Income</td>
<td class="col movements-date">2 Jan</td>
<td class="col movements-category">Income</td>
<td class="col movements-value">R 500</td>
</tr>
<tr class="table-row-height">
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr class="table-row-height">
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr> -->
</tbody>
</table>
</div>
</div>
</div>
<div class="col-lg-5 mb-4 mb-lg-0 operation-view">
<div class="container deposits operations-display p-2 card-widget card-widget-income">
<div class="h-50 pb-4 pb-lg-2">
<div class="card-body">
<div class="row mb-2">
<h4 class="text-muted text-uppercase small">Deposit income into account</h4>
</div>
<div class="row">
<form id="form-deposits">
<div class="form-row align-items-center input-group input-group-sm">
<div class="col">
<input type="date" class=" form-control input-date-income input-income-border" placeholder="Date" aria-required="true">
</div>
<div class="col mx-2">
<input type="amount" class=" form-control input-amount-income input-income-border" placeholder="R400" aria-required="true">
</div>
<div class="col">
<button type="button" class="btn btn-outline-dark submit-income" style="width:100%">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="container withdrawals operations-display mt-2 p-2 card-widget card-widget-expenses">
<div class="h-50 pb-4 pb-lg-2">
<div class="card-body">
<div class="row mb-2">
<h4 class="text-muted text-uppercase small">Add an Expense to account</h4>
</div>
<div class="form-row align-items-center input-group input-group-sm">
<form id="form-expenses" class="input-group input-group-sm">
<div class="form-row">
<div class="mb-1">
<select class="form-control input-type-expense expense-income-border" required="true">
<option value="" disabled selected hidden>-Please Select-</option>
<option>Food</option>
<option>Petrol</option>
<option>Clothing</option>
<option>Rent</option>
</select>
</div>
</div>
<div class="form-row align-items-center input-group input-group-sm">
<div class="col">
<input type="date" class=" form-control input-date-expense expense-income-border" placeholder="Date" required="true">
</div>
<div class="col mx-2">
<input type="amount" class=" form-control input-amount-expense expense-income-border" placeholder="R400" required="true">
</div>
<div class="col">
<button type="button" class="btn btn-outline-dark submit-expense" style="width:100%">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="container close-account operations-display mt-2 p-2 card-widget card-widget-close">
<div class="h-50 pb-4 pb-lg-2 container closure p-2">
<div class="card-body">
<div class="row">
<h4 class="text-muted text-uppercase small">Close your account</h4>
</div>
</div>
<div class="row">
<form>
<div class="form-row align-items-center input-group input-group-sm">
<div class="col">
<input type="text" class=" form-control input-account-username input-account-border" placeholder="username">
</div>
<div class="col mx-2">
<input type="password" class=" form-control input-account-password input-account-border" placeholder="password">
</div>
<div class="col">
<button type="button" class="btn btn-outline-dark submit-delete-account" style="width:100%">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<script src="script.js" async defer></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>