Google reCAPTCHA implementation for Nette Framework forms.
Branch | Composer | Nette | PHP | Readme |
---|---|---|---|---|
latest | ~3.0.0 | 2.4 | >=5.6 | - |
2.x | ~2.1.0 | 2.4 | >=5.6 | README-2.x |
1.6.x | ~1.6.3 | 2.4 | >=5.6 | README-1.6 |
1.5.x | ~1.5.2 | 2.3 | >=5.4 | README-1.5 |
1.4.x | ~1.4.4 | 2.2 | >=5.4 | README-1.4 |
1.3.x | ~1.3.0 | 2.1 | >=5.4 | README-1.3 |
Add your site to the sitelist in reCAPTCHA administration.
The latest version is most suitable for Nette 2.4 and PHP >=5.6.
composer require contributte/recaptcha:~2.1.0
extensions:
recaptcha: Contributte\ReCaptcha\DI\ReCaptchaExtension
recaptcha:
secretKey: ***
siteKey: ***
use Nette\Application\UI\Form;
protected function createComponentForm()
{
$form = new Form();
$form->addReCaptcha('recaptcha', $label = 'Captcha')
->setMessage('Are you bot?');
$form->addReCaptcha('recaptcha', $label = 'Captcha', $required = FALSE)
->setMessage('Are you bot?');
$form->addReCaptcha('recaptcha', $label = 'Captcha', $required = TRUE, $message = 'Are you bot?');
$form->onSuccess[] = function($form) {
dump($form->getValues());
}
}
<form n:name="myForm">
<div class="form-group">
<div n:name="recaptcha"></div>
</div>
</form>
Be sure you place this script before </body>
element.
<!-- re-Captcha -->
<script src='https://www.google.com/recaptcha/api.js'></script>