-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
58 lines (57 loc) · 1.81 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
<!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" />
<link rel="stylesheet" href="./style.css" />
<title>Pausiber | Bank App</title>
</head>
<body>
<main>
<div class="title">
<h1>BANK APP</h1>
<h1>Pausiber</h1>
</div>
<div class="container">
<div class="left-menu">
<div class="span-wrapper">
<span class="active-account">Account Name: -</span>
<span class="total-money">Total Balance: -</span>
</div>
<div class="btn-wrapper">
<button class="add-account-btn" onclick="createAccount()">
ADD ACCOUNT
</button>
<button class="change-account-btn" onclick="changeAccount()">
CHANGE ACCOUNT
</button>
</div>
</div>
<div class="right-menu">
<input
type="number"
class="money-input"
name="money"
placeholder="Enter Value"
onkeyup="updateAfterTransactionText()"
/>
<div class="after-transaction-text-container">
<span id="deposit-text">Balance after deposit: -</span>
<span id="withdraw-text">Balance after withdraw: -</span>
</div>
<div class="btn-wrapper">
<button class="deposit-money-btn" onclick="deposit()">
DEPOSIT
</button>
<button class="withdraw-money-btn" onclick="withdraw()">
WITHDRAW
</button>
</div>
</div>
</div>
<footer>2022 | Coded by Pausiber with ☕️</footer>
</main>
</body>
<script src="./script.js"></script>
</html>