A CAPTCHA implementation that starts normal but becomes increasingly paranoid and suspicious of user
behavior,
eventually leading to an existential crisis. Built for demonstration and entertainment purposes.
Note: This is a parody CAPTCHA for demonstration purposes. It mimics reCAPTCHA's
appearance but provides a humorous, progressively absurd user experience.
Demo - Sample Login Form
Implementation
<!-- Add this where you want the CAPTCHA -->
<div id="regret-captcha"></div>
<!-- Include the script -->
<script src="https://cdn.jsdelivr.net/gh/PinkLittleKitty/ReCaptcha@main/regret-captcha.js"></script>
<script>
new RegretCaptcha('regret-captcha', {
onComplete: function(passed) {
if (passed) {
// User completed the CAPTCHA
document.getElementById('submit-btn').disabled = false;
}
}
});
</script>