-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (66 loc) · 2.39 KB
/
index.html
File metadata and controls
69 lines (66 loc) · 2.39 KB
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
<!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="/scss/client.scss">
<!-- <script type="module" src="/modules/guard.js"></script> -->
<title>Bank</title>
</head>
<body>
<div class="container">
<h1>Добро пожаловать, <span id="name">Alex Adams!</span></h1>
<p id="email">alexadams@google.com</p>
<main>
<div class="top">
<h2>Мои кошельки</h2>
<div class="myWallets">
<!-- <div class="card">
<h3>visa</h3>
<p>rub</p>
</div>
<div class="card">
<h3>visa</h3>
<p>rub</p>
</div>
<div class="card">
<h3>visa</h3>
<p>rub</p>
</div>
<div class="card">
<h3>visa</h3>
<p>rub</p>
</div> -->
</div>
<button id="allWallets">Смотреть все кошельки</button>
</div>
<div class="bottom">
<h2>Последние транзакции</h2>
<div class="transactions">
<table>
<thead>
<tr>
<th>ID</th>
<th>Отправлено с кошелька</th>
<th>Категория </th>
<th>Сумма транзации</th>
<th>Когда</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<button id="allPay">Смотреть все оплаты</button>
</div>
</main>
</div>
<div class="modal_bg close"></div>
<div class="modal">
<div class="close x_style">X</div>
<h1>Are you sure to sign out?</h1>
<button>Sign out</button>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>