-
Notifications
You must be signed in to change notification settings - Fork 0
/
transactions.html
47 lines (40 loc) · 1.2 KB
/
transactions.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
<!DOCTYPE html>
<html>
<head>
<title>
Elixir Transfer
</title>
<link rel="icon" href="css/elixir.png">
<link rel="stylesheet" type="text/css" href="css/transactions.css">
<link rel="stylesheet" type="text/css" href="css/nav.css">
</head>
<body>
<div class="bg-img">
<nav>
<a href="index.html">home</a>
<a class="active" href="transactions.html">transactions</a>
<a href="transfer.html">transfer</a>
<a href="." style="float: right;">log out</a>
<br>
</nav>
<label id="address" class='address' style="margin-left: 800px; size:10px; font-size: 20px; color:black"></label>
<div class="container">
<label>Balance : </label>
<label id="balance"> Balance not available </label>
</div>
<table id="table">
<tr>
<!-- <th>date</th> -->
<th>Description</th>
<!-- <th>ref.</th> -->
<th>Transaction Amount</th>
<th>Transaction Type</th>
<!-- <th>balance</th>. -->
</tr>
</table>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/contract.js"></script>
<script src="js/transactions.js"> </script>
</body>
</html>