-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
49 lines (44 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>IPFS Box</title>
<script src="index.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css">
</head>
<body>
<!-- Intro -->
<section class="section">
<div class="container has-text-centered">
<img src="./undraw_collecting_fjjl.png" width="125px">
<h1 class="title is-size-1">IPFS Box</h1>
<h2 class="subtitle">
Upload files to decentralized file system - IPFS
</h2>
</div>
</section>
<!-- ./Intro -->
<!-- Uploader -->
<section class="section" style="padding-top:0;">
<div class="container has-text-centered">
<div class="file is-centered is-large has-name is-boxed">
<label class="file-label">
<input id="fileInput" class="file-input" type="file">
<span class="file-cta">
<span class="file-label">
Choose a file…
</span>
</span>
<span id="inputFileName" class="file-name"></span>
</label>
</div>
<a id="uploadBtn" class="button is-primary is-medium" style="margin-top:50px;visibility:hidden;">Upload to IPFS</a>
<div id="errorMsg" style="color:red;"></div>
<div id="result"></div>
</div>
</section>
<!-- ./Uploader -->
</body>
</html>