forked from jh-bate/hello-world-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello World Dapp (Beta)</title>
</head>
<body>
<div>
<h1>Hello World</h1>
<div style="float: left; display: block; position: relative; margin-right: 12px">
<h3>Add file</h3>
Name <input type="text" id="filenameAdd"><br>
<!-- text area -->
<div style="float: left; display: block; position: relative; margin-right: 12px">Data</div>
<div style="float: left; display: block; position: relative;">
<textarea id="input" rows="15" cols="80"></textarea>
</div>
<!-- The button -->
<div style="float: left; display: block; position: relative; clear: both; margin-top: 3px;">
<button type="button" onclick="addFile();">Submit</button>
</div>
</div>
<div style="float: left; display: block; position: relative; margin-right: 12px">
<h3>Get file</h3>
Name <input type="text" id="filenameGet"><br>
<!-- text area -->
<div style="float: left; display: block; position: relative; margin-right: 12px">Data</div>
<div style="float: left; display: block; position: relative;">
<textarea id="output" rows="15" cols="80"></textarea>
</div>
<!-- The button -->
<div style="float: left; display: block; position: relative; clear: both; margin-top: 3px;">
<button type="button" onclick="getFile();">Get</button>
</div>
</div>
</div>
<script src="js/helloworld.js" type="text/javascript"></script>
</body>
</html>