-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (47 loc) · 1.85 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
<html>
<head>
<title>STFU - Steem To File Upload</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1,maximum-scale=1"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="bin/css/app.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous"/>
</head>
<body>
<div id="page">
<div id="page-main">
<header class="header">
<form class="upload">
<button>
<span class="fa fa-sign-in-alt"></span>
<span class="upload-text">Login</span>
</button>
</form>
</header>
<form class="download-file" action="" method="post">
<h2>Download File</h2>
<label>
<input type="text" name="download" placeholder="Insert the filename..."/>
<button name="start-download" disabled>
<span class="fa fa-download"></span>
</button>
</label>
</form>
<main class="files">
<h2>Public files</h2>
</main>
</div>
<footer>
<div class="container">
<a href="https://github.com/pcsg/steemToFileUpload/blob/master/README.md" target="_blank">About</a> |
<a href="https://github.com/pcsg/steemToFileUpload" target="_blank">Source Code</a>
</div>
</footer>
</div>
<script src="//unpkg.com/dsteem@^0.10.1/dist/dsteem.js"></script>
<script src="/bin/js/utils/download.js"></script>
<script src="/bin/js/utils/moofx.js"></script>
<script src="/bin/js/utils/moofx.promise.js"></script>
<script type="module" src="/bin/js/app.js"></script>
</body>
</html>