-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (64 loc) · 2.26 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
<!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" />
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/0ab88bd284.js"
crossorigin="anonymous"
></script>
<title>Expense-Tracker</title>
</head>
<body>
<h1>Expense Tracker</h1>
<div class="container">
<h4 style="text-align: center">Your Balance</h4>
<h1 id="balance" style="text-align: center">$0.00</h1>
<div class="inc-exp-container">
<div>
<h4>Income</h4>
<p id="money-plus" class="money plus">+$0.00</p>
</div>
<div>
<h4>Expense</h4>
<p id="money-minus" class="money minus">-$0.00</p>
</div>
</div>
<h3 style="text-align: center">History</h3>
<p id="no-item" style="text-align: center">No Item In History</p>
<ul id="list" class="list"></ul>
<form id="form">
<div class="form-control">
<label for="text"><strong>Item</strong></label>
<input type="text" id="text" placeholder="Enter Item..." />
</div>
<br />
<div class="form-control">
<label for="amount"
><strong>Amount</strong> (Expense -Negative, Income +Positive)</label
>
<input type="number" id="amount" placeholder="Enter amount..." />
</div>
<button class="btn" onclick="showToast(successMsg)">Add transaction</button>
</form>
</div>
<div id="toast-box"></div>
<script src="script.js"></script>
<!-- Toast -->
<script>
let toastBox = document.getElementById('toast-box');
let successMsg = '<i class="fa-solid fa-circle-check"></i> Item Added';
function showToast(msg){
let toast = document.createElement('div');
toast.classList.add('toast');
toast.innerHTML = msg;
toastBox.appendChild(toast);
setTimeout(()=>{
toast.remove();
}, 6000);
}
</script>
</body>
</html>