Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- if (isset($_SESSION['humanverfication'])) {
- header("location:dashboard.php"); //redirect page name
- }
- ?>
- <html>
- <head>
- <title>Verify Human verification</title>
- <script src='jquery.js'></script>
- <script src='api.js'></script>
- <script>
- function recaptchaCallback() {
- $.ajax({
- url: "verify.php",
- type: 'post',
- data: {
- verify: 'true'
- },
- success: function (data) {
- debugger
- if (data) {
- window.location.href = 'dashboard.php';//redirect page name
- }
- }
- });
- }
- </script>
- <style>
- body { text-align: center;padding: 150px; }
- .captcha { text-align: center;padding-left: 380px}
- h3 { font-size: 30px; }
- body { font: 20px Helvetica, sans-serif; color: #333; }
- article { display: block; text-align: left; width: 650px; margin: 0 auto; }
- a { color: #dc8100; text-decoration: none; }
- a:hover { color: #333; text-decoration: none; }
- </style>
- </head>
- <body>
- <div>
- <h3>Bots are harmfull<br>Human verification</h3>
- <!-- Replace you site key below-->
- <div data-sitekey="moj numer" class="g-recaptcha captcha" data-callback="recaptchaCallback"></div>
- <!-- more of your HTML content -->
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement