Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
  6. <meta http-equiv="Pragma" content="no-cache">
  7. <meta http-equiv="Expires" content="0">
  8. <title>CAPTCHA</title>
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <link href="https://www.freehosting.com/css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
  11. <link href="https://www.freehosting.com/css/stack-interface.css" rel="stylesheet" type="text/css" media="all" />
  12. <link href="https://www.freehosting.com/css/theme.css" rel="stylesheet" type="text/css" media="all" />
  13. <link href="https://www.freehosting.com/css/custom.css" rel="stylesheet" type="text/css" media="all" />
  14. <link href="https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,400i,500,600,700" rel="stylesheet">
  15. <script src="https://www.google.com/recaptcha/api.js" async defer></script>
  16. <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
  17. <script src="https://www.freehosting.com/js/smooth-scroll.min.js"></script>
  18. <script src="https://www.freehosting.com/js/scripts.js"></script>
  19. </head>
  20. <body data-smooth-scroll-offset="77">
  21. <div class="main-container">
  22. <section class="height-100 bg--dark text-center">
  23. <div class="container pos-vertical-center">
  24. <div class="row">
  25. <div class="col-md-12">
  26. <h1 class="h1--large">Are you a robot?</h1>
  27. <p class="lead">
  28. We have detected an unusual activity originating from your IP address. Please complete verification to continue.
  29. </p>
  30. <div style="text-align: center; width: 304px; margin: 0 auto;">
  31. <form>
  32. <div class="g-recaptcha" data-sitekey="6LcqXLIUAAAAALBshED-nhlPGQBO8ECXN56f8mvJ"></div>
  33. </form>
  34. </div>
  35. <br/>
  36. <a class="btn btn--primary" id="submit"><span class="btn__text">Continue</span></a>
  37. <script>
  38. $('#submit').on('click',function() {
  39. event.preventDefault();
  40. var data = $('form').serialize();
  41. $.ajax({
  42. url: '/freehost/check_recaptcha.php',
  43. data: data,
  44. method: 'POST',
  45. success: function() {
  46. location.reload();
  47. },
  48. error: function() {
  49. location.reload();
  50. }
  51. });
  52. });
  53. </script>
  54. </div>
  55. </div>
  56. </section>
  57. </div>
  58. </body>
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement