-
Notifications
You must be signed in to change notification settings - Fork 1
/
add-funds.html
49 lines (46 loc) · 1.64 KB
/
add-funds.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>issuehunter</title>
<link rel="stylesheet" type="text/css" href="http://issuehunter.github.io/stylesheets/github-markdown.css">
<link rel="stylesheet" type="text/css" href="http://issuehunter.github.io/stylesheets/style.css" />
<script src="https://rawgit.com/ethereum/web3.js/develop/dist/web3.js"></script>
<script src="/src/contract-abi.js"></script>
<script src="/src/app.js"></script>
<script src="/src/add-funds.js"></script>
</head>
<body>
<article class="markdown-body">
<header class="logo">
<h1><span class="blue">issue</span><span class="red">hunter</span></h1>
</header>
<p><a href="/">Back</a></p>
<div>
<label for="account">Account</label>
<select id="account"></select>
</div>
<div>
<label for="issueId">Issue id</label>
<input id="issueId" type="text" placeholder="issue id">
</div>
<div>
<label for="amount">Amount (in Ether)</label>
<input id="amount" type="text" placeholder="0.001">
</div>
<div>
<button onclick="addFunds()">Add funds</button>
</div>
<h3>Campaign</h3>
<p class="add-funds">
Status: <strong id="status"></strong></br>
Block: <strong id="block"></strong></br>
Txn: <strong id="txn"></strong></br>
Issue id: <strong id="infoIssueId"></strong></br>
Funded by: <strong id="funder"></strong></br>
Timestamp: <strong id="timestamp"></strong></br>
Value: <strong id="infoAmount"></strong></br>
</p>
</article>
</body>
</html>