Back to Museum

Existence Checker

Are you truly human? Do you actually exist? We must run deep biological analyses on your physical form and cursor pathing to make sure. Please do not close your window.

Live Preview

Check the box below to begin verification.

I am human
Privacy - Terms

Source Code

existence_checker.html
<h1>Existence Checker</h1>
<p>Check the checkbox below to prove that you are not a robot</p>

<input type="checkbox" id="checkbox"><span>Bot Checker</span>

<p id="status"></p>

<script>
  const checkbox = document.getElementById("checkbox");
  const statusEl = document.getElementById("status");

  const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));

  checkbox.addEventListener("click", async (event) => {
    checkbox.disabled = true;

    statusEl.innerText = "Checking Human....";
    await wait(5000);
    statusEl.innerText = "Detecting Human...";
    await wait(5000);
    statusEl.innerText = "Searching Database...";
    await wait(100000);

    statusEl.innerText = "Human Check Passed!";
  });
</script>