-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchallenge.html
More file actions
60 lines (53 loc) · 1.72 KB
/
challenge.html
File metadata and controls
60 lines (53 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<!-- Mirrored from int.evina.fr/challenge/challenge.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 08 Jun 2019 15:07:33 GMT -->
<!-- Added by HTTrack -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<script type="text/javascript" src="jquery-1.11.0.min.js"></script>
<script src="bot-detector.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
new BotDetector({
timeout: 1200,
callback: function(result) {
if (result.isBot){
$('#Button').prop('disabled', true);
$("#button").hide();
}
}
}).monitor();
});
</script>
<head>
<style media="screen">
a.button {
background: #CDDC39;
padding: 20px;
text-align: center;
display: block;
margin: 10px;
font-size: 16px;
font-weight: bold;
text-decoration: none;
color: black;
}
html {
background: black;
font-family: Arial;
}
h1 {
color: #ffffff;
}
</style>
<meta charset="utf-8">
<title>Challenge</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
</head>
<body>
<h1>Challenge</h1>
<a id="button" href="https://int.evina.fr/challenge/subscribe.html" class="button">
subscribe
</a>
</body>
<!-- Mirrored from int.evina.fr/challenge/challenge.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 08 Jun 2019 15:07:33 GMT -->
</html>