badlang 0.4.0

Next generation stack-based programming language
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
  <head>
    <title>reCAPTCHA demo: Simple page</title>
    <script src="https://www.google.com/recaptcha/enterprise.js" async defer></script>
  </head>
  <body>
    <div class="g-recaptcha" data-sitekey="6LdtVXgpAAAAAN__TrlyP7N-yQujEKdeGckA_O4q" data-action="LOGIN"></div>
    <script>
      setInterval(_ => { 
        if (grecaptcha.enterprise.getResponse() != "") {
          console.log("Success");
        }
      }, 200);
    </script>
  </body>
</html>