-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (42 loc) · 1.4 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
58
59
60
61
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112818888-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-112818888-2');
</script>
<meta charset="UTF-8">
<title>Steemit Profit Finder</title>
<script src="https://cdn.steemjs.com/lib/latest/steem.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="content">
<div class="bg-settings"></div>
<div class="bg-output"></div>
<div class="titlea"><center>
<h3>Search Settings</h3>
</center></div>
<div class="titleb"><center>
<h3>Accounts Found</h3>
</center></div>
<div class="settinga"><center>
<label for="percent_upvoted">Minimum % of Replies Upvoted</label>
</br>
<input type="number" min="0" max="100" value="50" step="1" id="percent_upvoted" name="percent_upvoted">
</center></div>
<div class="settingb"><center>
<label for="upvote_value">Minimum Upvote Value ($)</label>
</br>
<input type="number" min="0" value="0.01" step="0.001" id="upvote_value" name="upvote_value">
</center></div>
<div class="outputs">
<span id="checking">Loading...</span>
</br>
<span id="output"></br></span>
</div>
</div>
</body>