forked from neeraj542/Personal-Finance-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
241 lines (233 loc) · 8.42 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
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/x-icon"
href="./favicon_io/android-chrome-512x512.png"
sizes="64x64"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.css"
/>
<script src="https://unpkg.com/feather-icons"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<title>Finance Tracker - A Personal Finance App</title>
</head>
<body>
<!-- <header class="header-part"> -->
<nav>
<div class="navbar">
<a href="#" class="logo"
><i class="fas fa-chart-line"></i> Finance Tracker</a
>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#tracker">Use Tracker</a></li>
<li><a href="#how-it-works">How it works</a></li>
<li><a href="#">Support</a></li>
</ul>
<div class="buttons">
<a href="./login.html" class="btn-head"
><i class="fas fa-sign-in-alt"></i> Log In</a
>
<a href="./sign-up.html" class="btn-head"
><i class="fas fa-user-plus"></i> Sign Up</a
>
</div>
<!-- <div class="menu-toggle">
<i class="fas fa-bars"></i>
</div> -->
</div>
</nav>
<!-- Landing Page Content -->
<section class="section-box">
<div class="main-landing">
<div class="content">
<h1 class="under-welcome-h1">Take Control of Your Finances</h1>
<div class="under-h1"></div>
<p class="under-welcome-p">
Track your income and expenses effortlessly. Manage your budget, set
financial goals, and make smarter decisions for a more secure
future.
</p>
<button class="under-welcome-btn">Sign Up Now</button>
</div>
<div class="under-welcome-image">
<img src="./assets/makeme.png" alt="Power Finance" />
</div>
</div>
</section>
<br />
<div class="arrow">
<a href="#tracker " class="scroll-link">
<!-- <span></span> -->
<!-- <span></span> -->
<span></span>
</a>
</div>
<section class="main-content" id="tracker">
<div class="head-text">
<h1>Access Your Personal Finance Tracker</h1>
<div class="under-head-text"></div>
</div>
<br />
<div class="tracker-part">
<div class="tracker-balance">
Current Balance: <span id="balance" class="current-balance"></span>
</div>
<div class="currency-filter">
<div class="filter-left">
<label for="currency">Select Currency:</label>
<select id="currency" onchange="updateBalance()">
<option value="USD">USD</option>
<option value="EUR">EUR</option>
<option value="INR" selected>INR</option>
</select>
</div>
<div class="filter-right">
<label for="text" class="date-box">Choose Date:</label>
<input type="date" id="date" placeholder="Date" />
</div>
</div>
<div class="transaction-form">
<input type="text" id="description" placeholder="Description" />
<input type="number" id="amount" placeholder="Amount" />
<select id="type">
<option value="income">Income</option>
<option value="expense">Expense</option>
</select>
<button onclick="addTransaction()">Add Transaction</button>
</div>
<div class="table-part" id="table-part">
<table id="transaction-table">
<tr>
<th>Date</th>
<th>Description</th>
<th>Amount</th>
<th>Type</th>
<th>Action</th>
</tr>
</table>
</div>
</div>
</section>
<section class="how-it-works" id="how-it-works">
<div class="head-text">
<h1>How it works</h1>
<div class="under-head-text"></div>
</div>
<br />
<div class="working-content">
<div class="left-working">
<h5 class="working-head">
Experience the power of
<span class="text-lightBlue">Personal Finance Tracker</span>
</h5>
<!-- <div class="under-h1"></div> -->
<ul class="ul-items">
<li class="check-list-items">
<i data-feather="check" class="feather icon-check"></i>
<span>Track effortlessly</span>
</li>
<li class="check-list-items">
<i data-feather="check" class="feather icon-check"></i>
<span>Control transactions</span>
</li>
<li class="check-list-items">
<i data-feather="check" class="feather icon-check"></i>
<span>Customize currencies</span>
</li>
<li class="check-list-items">
<i class="icon-check" data-feather="check"></i>
<span>Edit with ease</span>
</li>
<li class="check-list-items">
<i data-feather="check" class="feather icon-check"></i>
<span>Real-time balance</span>
</li>
<li class="check-list-items">
<i data-feather="check" class="feather icon-check"></i>
<span>Secure data protection</span>
</li>
</ul>
<button class="sign-up-button-btn">Sign Up Now</button>
</div>
<div class="right-working-image">
<!-- <div class="under-welcome-image"> -->
<img
src="./assets/how-it-works.png"
target="_self"
alt="Power Finance"
/>
<!-- </div> -->
</div>
</div>
</section>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/your-font-awesome-kit.js"
crossorigin="anonymous"
></script>
<br />
<br />
<br />
<br />
<br />
<!-- Footer Code -->
<footer>
<div class="footer-basic">
<div class="social">
<a href="https://github.com"
><img src="icons/github.png" class="icon-style" alt="Github icon"
/></a>
<!-- You can add any other social details in the same format as github, twitter, etc. -->
<a href="https://www.twitter.com"
><img src="icons/twitter.png" class="icon-style" alt="Twitter icon"
/></a>
<a href="https://www.gmail.com"
><img src="icons/gmail.png" class="icon-style" alt="Emailicon"
/></a>
<a href="https://www.facebook.com"
><img
src="icons/facebook.png"
class="icon-style"
alt="Facebook icon"
/></a>
<a href="https://www.instagram.com"
><img
src="icons/instagram.png"
class="icon-style"
alt="Instagram icon"
/></a>
</div>
<ul class="list-inline">
<li class="list-inline-item"><a href=" # ">Home</a></li>
<!-- Add the details/link which are related to the project-->
<li class="list-inline-item"><a href=" # ">Contact</a></li>
<!-- Add the required contact details. -->
<li class="list-inline-item"><a href=" # ">Services</a></li>
<!-- Add the details/link to the services you provide. -->
<li class="list-inline-item"><a href=" # ">About</a></li>
<!-- Add the details/link about the project-->
<li class="list-inline-item"><a href=" # ">Terms</a></li>
<!-- Add the details/link to the terms of the website. -->
<li class="list-inline-item"><a href=" # ">Privacy Policy</a></li>
<!-- Add the details/link of Privacy Policy of the the website. -->
</ul>
<p class="copyright">Created by Neeraj Meena © 2023</p>
</div>
</footer>
<!-- Footer Code ends -->
</body>
</html>