-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Expense Tracker</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<div class="container">
<h2>Expense Tracker</h2>
<div class="balance-container">
<h4>Your Balance</h4>
<h1 id="balance">$0.00</h1>
<div class="inc-exp-container">
<div>
<h5>Income</h5>
<p id="money-plus" class="money plus">+$0.00</p>
</div>
<div>
<h5>Expense</h5>
<p id="money-minus" class="money minus">-$0.00</p>
</div>
</div>
</div>
<!-- Pie Chart Container -->
<div class="chart-container">
<h4>Financial Overview</h4>
<canvas id="pie-chart"></canvas>
</div>
<h3>History</h3>
<ul id="list" class="list"></ul>
<h3>Add New Transaction</h3>
<form id="form">
<div class="form-control">
<label for="text">Text</label>
<input type="text" id="text" placeholder="Enter text..." />
</div>
<div class="form-control">
<label for="amount">Amount <br />(negative - expense, positive - income)</label>
<input type="number" id="amount" placeholder="Enter amount..." />
</div>
<div class="form-control">
<label for="category">Category</label>
<input type="text" id="category" placeholder="Enter category..." />
</div>
<button class="btn">Add Transaction</button>
</form>
<h3>Filter by Category</h3>
<input type="text" id="filter" placeholder="Enter category to filter..." />
<button class="btn" onclick="exportData()">Export Data</button>
<input type="file" id="fileInput" />
<button class="btn" onclick="uploadData()">Upload Data</button>
<div class="footer__bar">
Copyright © 2024 Web Design Jagadish Panda. All rights reserved.
</div>
</div>
<script src="script.js"></script>
</body>
</html>