-
Notifications
You must be signed in to change notification settings - Fork 2
/
localtest.html
80 lines (64 loc) · 2.54 KB
/
localtest.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="https://gropox.github.io/votebot/assets/css/style.css?v=2dd161505066a1acb10f90544e58a82ff76b6c39">
<title>votebot by gropox</title>
</head>
<body>
<header>
<div class="container">
<h1>votebot</h1>
<h2>Golos Votebot</h2>
<section id="downloads">
<a href="https://github.com/gropox/votebot" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
</section>
</div>
</header>
<div class="container">
<section id="main_content">
<style>
img {
width:22px;
float:left;
margin:0;
}
label { display: block; width: 400px; }
</style>
<div id="options" class="login">
<div>
<label>Пользователи (через запятую)<br>
<textarea id="voteaccounts" required rows="15" cols="40" placeholder="Аккаунты за которые голосовать. Через запятую" onkeyup="showAccounts(this)">ropox</textarea></label>
<br>
<label>Логин пользователя<br>
<input id="username" type="text" required class="text" name="username" placeholder="Логин пользователя"></label>
<br>
<label for="k">Постинг ключ</label>
<input id="k" type="password" required class="text" name="password" placeholder="Постинг ключ, должен начинаться с '5', а не с 'GLS'" size="50"><button onclick="toggleKey()" title="Показать ключ">*</button><br>
<br>
<label>Сила голоса %<br>
<input id="votepower" type="number" class="text" value="100" name="text" min="0" max="100" size="15" placeholder="Сила голоса %"></label>
<br>
<label>Голосовать за пост по прошествии N минут<br>
<input id="delay" type="number" class="text" value="5" name="text" min="0" size="15" placeholder="Задержка мин."></label>
<input id="debug" type="hidden" value="debug"/>
</div>
<br>
<button onclick="startVoting()" class="signin">
Запуск голосования
</button>
<button onclick="stopVoting()" class="signin">
Остaновить голосование
</button>
<div id="progress"></div>
<hr>
</div>
<div id="accounts_view"></div>
<div id="nicedata"></div>
<script src="golos.js"></script>
<script src="votebot.js" onload="recoverData()"></script>
</section>
</div>
</body>
</html>