html
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
<!DOCTYPE html>
<html>
<head>
<title>Captcha Test</title>
</head>
<body>
<img src="https://i.ibb.co/B52SPHyv/IMG-20250201-151916.png" alt="IMG-20250201-151916" border="0" width='100%'>
<div style='text-align:center; font-family:Georgia;'>
<h2>Enter the characters you can see above:</h2>
<input type='text' id='answer'>
</div><br>
<div id='checkArea'><input type='checkbox' id='notARobot'> I am not a robot</div><br><br>
<div style="text-align:center;"><button id='continueButton'>Continue →</button></div>
</body>
<script>
function checkForRobot() {
if (document.getElementById('notARobot').checked === true){
if (document.getElementById('answer').value != 'TD84P9T_SUPER!'){
alert('You did not filled the characters correctly! You are a robot! You cannot continue!')
} else {
alert('You are a human! You can continue now!')
window.location.href = "https://youtu.be/xvFZjo5PgG0?si=ARAfYhWhKk8RZVAs"
}
} else {
alert('Please select that you are not a robot')
}
}
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
opacity:100%;
animation: appear 3s;
img {
border: 3px solid black;
border-radius:10px;
}
#answer {
width:95%;
height:30px;
font-size:25px;
font-family:Georgia;
border:2px solid black;
border-radius:5px;
}
#checkArea {
height:35px;
background-color: gray;
font-size:20px;
padding-top:10px;
padding-right:10px;
padding-left:10px;
}
#continueButton {
height:50px;
width:100%;
background-color: #88CCFF;
border: 3px solid cyan;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Запуск