-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 860 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
<!DOCTYPE html>
<html>
<head>
<title>Blockchain Frontend</title>
<link rel="stylesheet" href="styles.css">
<script src="app.js"></script>
</head>
<body>
<div class="container">
<h1>Blockchain</h1>
<div class="button-section">
<button class="button mine-button" onclick="mineBlock()">Mine Block</button>
<button class="button chain-button" onclick="getChain()">Get Chain</button>
<button class="button validate-button" onclick="checkValidityChain()">Check Validity</button>
<button class="button reset-button" onclick="resetBlockchain()">Reset Chain</button>
</div>
<div class="blockchain" id="blockchain"> </div>
<div class="chain" id="chain"></div>
<p><span id="response"></span></p>
</div>
</body>
</html>