-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
32 lines (27 loc) · 884 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Application</title>
<!--vite-dev-scripts-->
</head>
<body>
<div class="world" id="world"></div>
<!--bet state-->
<div class="bank">
<div class="bank-balance">6000</div>
<button class="button button--deposit" type="button" id="deposit-button">Deposit</button>
</div>
<!--deposit state-->
<div class="deposit">
<div class="deposit__modal">
<div class="deposit__title">Title</div>
<label class="deposit__label" for="deposit-input">input</label>
<input class="deposit__input" type="number" id="deposit-input" min="0" value="500">
<button class="deposit__button" type="button">Submit</button>
</div>
</div>
<script type="module" src="/src/index.ts"></script>
</body>
</html>