-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate-campaign.html
44 lines (41 loc) · 1.52 KB
/
create-campaign.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
<!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/create-campaign.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>
<button onclick="createCampaign();">Create campaign</button>
</div>
<h3>New Campaign</h3>
<p class="new-campaign">
Status: <strong id="newCampaignStatus"></strong></br>
Block: <strong id="block"></strong></br>
Txn: <strong id="txn"></strong></br>
Issue id: <strong id="newCampaignIssueId"></strong></br>
Created by: <strong id="newCampaignCreatedBy"></strong></br>
Timestamp: <strong id="newCampaignTimestamp"></strong></br>
</p>
</article>
</body>
</html>