Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>reCAPTCHA</title>
- <style type="text/css">
- body
- {
- font-family: arial;
- background: #fff;
- color: #000;
- font-size: 12px;
- }
- </style>
- </head>
- <body>
- <form method="POST">
- <?php
- require_once('recaptchalib.php');
- $privatekey = "VOTRE_CLÉ_PRIVÉE";
- $resp = recaptcha_check_answer($privatekey, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field']);
- if (!isset($_POST['recaptcha_response_field']))
- echo "reCAPTCHA initialisé !<br /><br />"; // S'affiche quand le formulaire n'a pas encore été validé une première fois.
- elseif (!$resp->is_valid)
- echo "Erreur : ".$resp->error."<br /><br />"; // Vaut "incorrect-captcha-sol" quand le reCAPTCHA n'a pas ou mal été remplit.
- else
- echo "Recaptcha OK !<br /><br />"; // S'affiche quand le reCAPTCHA a été validé et correctement remplit.
- ?>
- <script type="text/javascript">
- var RecaptchaOptions =
- {
- theme: 'custom',
- custom_theme_widget: 'recaptcha_widget'
- };
- </script>
- <div id="recaptcha_widget" style="display: none;">
- <!-- Début de la customisation -->
- <div id="recaptcha_image"></div>
- <span class="recaptcha_only_if_image">Recopiez les mots ci-dessus :</span>
- <span class="recaptcha_only_if_audio">Qu'entendez-vous ?</span>
- <input type="text" id="recaptcha_response_field" name="recaptcha_response_field">
- <div><a href="javascript: Recaptcha.reload();">Afficher une autre image CAPTCHA</a></div>
- <div class="recaptcha_only_if_image"><a href="javascript: Recaptcha.switch_type('audio');">CAPTCHA audio</a></div>
- <div class="recaptcha_only_if_audio"><a href="javascript: Recaptcha.switch_type('image');">Afficher une image CAPTCHA</a></div>
- <div><a href="javascript: Recaptcha.showhelp();">Aide</a></div>
- <!-- Fin de la customisation -->
- <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=VOTRE_CLÉ_PUBLIQUE"></script>
- <noscript><iframe src="http://www.google.com/recaptcha/api/noscript?k=VOTRE_CLÉ_PUBLIQUE" height="300" width="500" frameborder="0"></iframe><br>
- <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
- <input type="hidden" name="recaptcha_response_field" value="manual_challenge"></noscript>
- </div>
- <input type="submit" name="Button1" value="Submit">
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement