-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (43 loc) · 1.17 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
<html>
<head>
<style>
body, html {
padding: 0
}
input {
padding: 10px;
}
form {
margin: 100px auto 0;
width: 500px;
}
form label input,
form label span {
display: inline-block;
margin: 0 0 10px;
width: 100%;
}
.result {
display: inline-block;
padding-left: 10px;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
</head>
<body>
<form action="" method="post">
<label>
<span>Please copy the post url to this field</span>
<input name="url" placeholder="I need a post url"/>
</label>
<input type="submit" value="I want my Export"/>
<div class="result" style="display: none">
<span class="fa fa-spinner fa-spin"></span>
</div>
</form>
<script src="https://cdn.steemjs.com/lib/latest/steem.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/URI.js/1.18.12/URI.min.js"></script>
<script src="csv.js"></script>
<script src="index.js"></script>
</body>
</html>