-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.html
102 lines (95 loc) · 4.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Captcha Harvester</title>
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="./node_modules/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="./main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<br><br>
<center>
<!-- Navigation -->
<ul class="nav nav-tabs" style="width: 400px;">
<li role="presentation" class="active">
<a data-toggle="pill" href="#menu1">Settings</a>
</li>
<li role="presentation">
<a data-toggle="pill" href="#menu2">Solve History</a>
</li>
<li role="presentation">
<a data-toggle="pill" href="#menu3">Google Login</a>
</li>
</ul>
<!-- Tabs -->
<div class="tab-content">
<!-- Captcha Solving -->
<div id="menu1" class="tab-pane fade in active">
<!-- Inputs -->
<div class="harvester-inputs">
<div class="input-group">
<h5>Sitekey</h5>
<input type="text" style="width: 400px;" class="form-control" id="sitekey">
</div>
<div class="input-group">
<h5>Solve URL</h5>
<input type="text" style="width: 400px;" class="form-control" id="solveURL">
</div>
<div class="input-group">
<h5>Captcha Window Port</h5>
<input type="number" style="width: 400px;" class="form-control" id="portNo">
</div>
<div class="input-group">
<h5>Server Bank Port</h5>
<input type="number" style="width: 400px;" class="form-control" id="portNoServer">
</div>
</div>
<!-- <div class="form-check" style="font-size: 14px;">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
Enable IP Authorization
</div> -->
<!-- <div class="form-check" style="font-size: 14px;">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
Disable User/Pass
</div> -->
<!-- Buttons -->
<div class="harvester-buttons">
<button type="submit" class="btn btn-success" id="saveSettings" style="width: 400px; outline: none;">Save</button>
<button type="submit" class="btn btn-warning" id="openCapWindow" style="width: 400px; outline: none;">Open Captcha Window</button>
<button type="submit" class="btn btn-default" id="openEndpoint" style="width: 400px; outline: none;">Tokens Endpoint</button>
</div>
</div>
<!-- Captcha History -->
<div id="menu2" class="tab-pane fade">
<br><br>
<div tabindex="0" style="width: 400px; height: 390px; overflow: auto; visibility: hidden;">
<ul class="list-group" style="width: 400px; visibility: visible;" id="history">
<!-- History -->
</ul>
</div>
</div>
<!-- Google Authentication -->
<div id="menu3" class="tab-pane fade">
<br><br>
<p style="width: 400px; text-align: left;">By authenticating your Google account with CaptchaHarvester this enables you to solve Captcha's at a faster rate. Based off the age of the
if the account is older this with increase your chance of being prompted "one-click" captcha's.</p>
<br><br>
<button type="submit" class="btn btn-default" id="login" style="width: 400px; outline: none;">Authenticate Account</button>
<br><br>
<button type="submit" class="btn btn-danger" id="logout" style="width: 400px; outline: none;">Log Out</button>
</div>
</div>
</center>
</body>
<script>
if (typeof module === 'object') {
window.module = module;
module = undefined;
}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>require('./app.js')</script>
</html>