-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbot.html
More file actions
73 lines (64 loc) · 1.72 KB
/
bot.html
File metadata and controls
73 lines (64 loc) · 1.72 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
<!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 {
text-decoration: none;
color:black;
}
.content{
display:block;
margin-top: 100px;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<a href="botornot.html">
<img src="bot_or_not.png" alt="captcha that says bot or not" width="170" height="80" ></a>
<div class="content">
<center><img src="https://meme.xyz/uploads/posts/t/l-47267-me-fails-captcha-4-times-me.jpg" width="400px" height="400px">
<br />
You are a bot, congratulations !
<br>Now go spam a website.</center>
</div>
</body>
</html>