-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (76 loc) · 2.67 KB
/
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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html class="no-js" lang="en" dir="ltr">
<head>
<title>Certificate Tracker ÐApp</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width">
<meta property="og:title" content="Certificate Tracker ÐApp">
<meta property="og:description" content="Certificate Tracker DApp for tracking certificates issued on Blockchain">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<script src="/js/buffer.js"></script>
<script src="/js/ipfs.js"></script>
<script src="/js/web3.min.js"></script>
<script src="/js/CertificateTracker.js"></script>
<script src="/js/app.js"></script>
</head>
<body>
<div>
<div>
<h1>Welcome to Certificate CertificateTracker ÐApp</h1>
<h3>Now track Certificate Issued easily</h3>
<p>To get started, Enter the .</p>
</div>
</div>
<div>
<div>
<div>
<h1>ETH Wallet</h1>
</div>
<div>
<label>Account Address</label>
<p><em id="accountAddress">Loading..</em></p>
</div>
</div>
<div id="Wallet Details">
<label>ETH Balance</label>
<p><em id="etherBalance">0</em> (<span class="etherSymbol">ETH</span>)</p>
</div>
</div>
<hr />
<div>
<div>
<label>Certificate Tracker Contract Address</label>
<p><em id="registryAddress">0xf51c5146edad18cb5a636bf0d563f3f5f287be6d</em></p>
</div>
<div>
<div>
<h2>Issue the Certificate on Ethereum Blockchain</h2>
</div>
<div>
<label>Certificate Holder Name</label>
<input type="text" id="ownerName" placeholder="John Doe" />
</div>
<div>
<label>Wallet Address</label>
<input type="text" id="ownerAddress" placeholder="20" />
</div>
<div>
<label>Email Id</label>
<input type="email" id="ownerEmail" placeholder="john.doe@email.com" />
</div>
<div>
<label>Upload Certificate</label>
<input type="file" id="certificate" onchange="chooseFile()"/>
</div>
<div>
<br />
<button id="issueCertificate" onclick="issueCertificate()">Award Certificate</button>
</div>
</div>
<div id="issueCertificateResponse"></div>
<hr />
</div>
</body>
</html>