-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhuman.html
More file actions
76 lines (66 loc) · 2.28 KB
/
human.html
File metadata and controls
76 lines (66 loc) · 2.28 KB
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var timeoutHandle;
function countdown(minutes) {
var seconds = 60;
var mins = minutes
function tick() {
var counter = document.getElementById("timer");
var current_minutes = mins-1
seconds--;
counter.innerHTML =
current_minutes.toString() + ":" + (seconds < 10 ? "0" : "") + String(seconds);
if( seconds > 0 ) {
timeoutHandle=setTimeout(tick, 1000);
} else {
if(mins > 1){
// countdown(mins-1); never reach “00″ issue solved:Contributed by Victor Streithorst
setTimeout(function () { countdown(mins - 1); }, 1000);
}
}
}
tick();
}
countdown(2);
</script>
<title>bot or not?</title>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
body {
font-size: 20px;
color: black;
display: block;
justify-content: center;
align-items: center;
}
a {
color:black;
}
.content{
display:block;
margin-top: 70px;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<br><br><a href="botornot.html">
<img src="bot_or_not.png" alt="captcha that says bot or not" width="150" height="60" ></a>
<div class="content">
<center><img style="height:250px;width: 400px;" src="http://www.thesmokinggun.com/sites/default/files/imagecache/750x970/documents/1trumphospital.jpg">
<br />
Congratulations! You are a human. <br>What does it mean to be human? <br>You may be a <a href="https://www.zdnet.com/article/inside-indias-captcha-solving-economy/">sweatshop worker</a>,<br> someone who isn't <a href="https://www.w3.org/WAI/intro/captcha.php">disabled</a>, <br>a <a href="https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710">machine-learning program</a>, <br> or an <a href="https://spectrum.ieee.org/tech-talk/robotics/artificial-intelligence/artificial-intelligence-beats-captcha">artificial intelligence system.</a>
</center>
<br>
<br>
<br>
</div>
</body>
</html>