-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobot.html
More file actions
48 lines (40 loc) · 1.79 KB
/
robot.html
File metadata and controls
48 lines (40 loc) · 1.79 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
<html>
<head>
<title>vlco_o boop.</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/index.css" type="text/css"/>
<link rel="icon" href="assets/favicon_index.ico"/>
<script>
function clipboard_copy(text, msg) {
navigator.clipboard.writeText(text).then(
function() {
alert("Copied " + msg + " to clipboard.");
},
function(err) {
alert("Could not copy text cause: ", err);
}
);
}
async function verify() {
document.getElementById("not_human").disabled = true;
document.getElementById("icon_loading").style.display = "";
await new Promise(r => setTimeout(r, (Math.random() * 2000) + 1000));
document.getElementById("icon_loading").style.display = "none";
alert("Could not verify that user is non-human.");
alert("This incident has been reported. Please go back immediately.");
location.href = "https://vlcoo.github.io";
}
</script>
</head>
<body>
<h1>vlcoo.net</h1>
<h2><a href="/" >Home</a> | Beep boop.</h2>
<br>
<div class="block">
<img style="display: none;" id="icon_loading" class="block_bg" src="assets/anim_loading.gif"></img>
<h3>Boop beep?</h3>
<label for="not_human">Please verify before continuing: </label>
<button id="not_human" onclick="verify()">I'm not a human</button>
<p></p>
</div>