-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (80 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Functional Baap-er-Bank</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<header>
<h1 class="text-5xl text-center mt-4">
Functional
<span class="text-emerald-700 font-medium">Baap-er-Bank</span>!!!
</h1>
</header>
<main>
<!-- Balance And Transaction Summary -->
<section class="mt-8">
<div class="grid grid-cols-3 gap-4 w-9/12 mx-auto text-white">
<div class="bg-yellow-400 p-8 rounded-lg">
<h4 class="text-3xl">Deposit</h4>
<h2 class="text-5xl font-medium">
$<span id="deposit-total">00</span>
</h2>
</div>
<div class="bg-red-400 p-8 rounded-lg">
<h4 class="text-3xl">Withdraw</h4>
<h2 class="text-5xl font-medium">
$<span id="withdraw-total">00</span>
</h2>
</div>
<div class="bg-blue-400 p-8 rounded-lg">
<h4 class="text-3xl">Balance</h4>
<h2 class="text-5xl font-medium">
$<span id="balance-total">1240</span>
</h2>
</div>
</div>
</section>
<!-- Deposit And Withdraw section -->
<section class="mt-8 w-3/4 mx-auto">
<div class="grid grid-cols-2 gap-4">
<div class="bg-violet-400 p-8 rounded-lg">
<h3 class="text-4xl text-white mb-4">Your Deposit</h3>
<input
id="deposit-field"
class="w-3/4 px-4 py-3 rounded-lg block"
type="text"
placeholder="$ Amount you want to deposit"
/>
<button
id="btn-deposit"
class="bg-blue-700 px-6 py-2 text-white rounded-lg mt-4 font-medium hover:bg-blue-500"
>
Deposit
</button>
</div>
<div class="bg-cyan-400 p-8 rounded-lg">
<h3 class="text-4xl text-white mb-4">Your Withdraw</h3>
<input
id="withdraw-field"
class="w-3/4 px-4 py-3 rounded-lg block"
type="text"
placeholder="$ Amount you want to deposit"
/>
<button
id="btn-withdraw"
class="bg-blue-700 px-6 py-2 text-white rounded-lg mt-4 font-medium hover:bg-blue-500"
>
Withdraw
</button>
</div>
</div>
</section>
</main>
<script src="js/deposit.js"></script>
<script src="js/withdraw.js"></script>
</body>
</html>