forked from menschee/tonscanplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
25 lines (25 loc) · 868 Bytes
/
table.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
<html>
<head>
<script src="js/jquery-3.6.1.min.js"></script>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="css/table.css">
</head>
<body>
<div class="warning">
NOTE: You can click on the addresses to modify them or their name tags.
</div>
<div id="ton-addr__users">
<table class="table table-striped table-dark">
<thead style="background: rgba(0,0,0,0.2); text-align: center">
<tr>
<th scope="col">Name</th>
<th scope="col">TON Address</th>
<th scope="col">Type</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</body>
<script src="js/table/index.js"></script>
</html>