-
Notifications
You must be signed in to change notification settings - Fork 0
/
bank.html
50 lines (49 loc) · 2.31 KB
/
bank.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
<!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>Bank Inside</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<header>
<h1 class="text-5xl mt-6 text-center">Let Get Some <span class="font-semibold text-violet-600 ">Moooony!!!</span></h1>
</header>
<body>
<main>
<section class="mt-12">
<div class="grid grid-cols-3 gap-4 w-9/12 mx-auto text-white">
<div class="bg-green-500 p-8 rounded-xl">
<h4 class="text-2xl">Deposit</h4>
<h2 class="text-5xl">$<span id="deposit-total">00</span></h2>
</div>
<div class="bg-yellow-500 p-8 rounded-xl">
<h4 class="text-2xl">Withdraw</h4>
<h2 class="text-5xl">$<span id="withdraw-value">00</span></h2>
</div>
<div class="bg-violet-500 p-8 rounded-xl">
<h4 class="text-2xl">Balance</h4>
<h2 class="text-5xl">$<span id="balance-total">1240</span></h2>
</div>
</div>
</section>
<!-- Deposit and withdraw -->
<section class="mt-12">
<div class="grid grid-cols-2 gap-4 w-9/12 mx-auto ">
<div class="bg-fuchsia-400 p-8 rounded-xl">
<h4 class="text-2xl mb-4">Please Deposit</h4>
<input class="w-9/12 block mb-2 px-3" type="Email" id="deposit-field" placeholder="$ Amount You want to Deposit">
<button id="btn-deposit" class="bg-green-500 hover:bg-sky-700 px-8 py-2 text-red font-medium rounded-lg text-white">Demposit</button>
</div>
<div class="bg-sky-500 p-8 rounded-xl">
<h4 class="text-2xl mb-4">Please Withdraw</h4>
<input class="w-9/12 block mb-2 px-3" type="text" id="withdraw-field" placeholder="$ Amount You Want to Withdeaw">
<button id="btn-Withdraw" class="bg-amber-600 hover:bg-red-500 px-8 py-2 text-white font-medium rounded-lg">Withdraw</button>
</div>
</section>
</main>
<script src="deposit.js"></script>
<script src="withdraw.js"></script>
</body>
</html>