-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransactions.html
58 lines (56 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en"></html>
<head>
<meta charset="UTF-8" />
<link rel="icon" href="favicon/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="app/css/style.css" />
<script type="text/javascript" src="app/js/main.js"></script>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<title>
MONET: Transactions
</title>
</head>
<body>
<div id="banner">
<img
src="app/images/tenom-logo.png"
alt="tenom-logo"
style="width:50px;height:50px;padding-left: 50px;padding-top: 5px;"
/>
<ul>
<li>
<button onclick="window.location.href = 'index.html';">
<i class="fas fa-project-diagram"></i> Network
</button>
</li>
<li>
<button onclick="window.location.href = 'blocks.html';">
<i class="fas fa-cubes"></i> Blocks
</button>
</li>
<li>
<button onclick="window.location.href = 'accounts.html';">
<i class="fas fa-user"></i> Accounts
</button>
</li>
<li>
<button
onclick="window.location.href = 'transactions.html';"
class="active"
>
<i class="fas fa-credit-card"></i> Transactions
</button>
</li>
<li>
<button onclick="window.location.href = 'settings.html';">
<i class="fas fa-cog"></i> Settings
</button>
</li>
</ul>
</div>
</body>