-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VittBal</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://cdn.ethers.io/lib/ethers-5.7.2.umd.min.js"
type="application/javascript"
></script>
</head>
<body>
<div class="container">
<h2 class="container_title">💰VittBal🪙</h2>
<div class="deposit">
<h3>
Deposit :
<span
><input
type="number"
placeholder="0"
id="deposit_ip"
inputmode="numeric"
/></span>
</h3>
</div>
<button class="deposit_btn">Set Deposit</button>
<div class="balance">
<div class="balance_btn">
<button class="update_btn">Update Balance</button>
<button class="current_btn">Current Balance</button>
</div>
<input
type="number"
placeholder="0"
inputmode="numeric"
id="currentBalance_op"
readonly="true"
/>
</div>
</div>
<script src="script.js"></script>
</body>
</html>