whatson-web / recaptcha-bundle
Symfony - Whatson Web - RecaptchaBundle
Installs: 163
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
This package is not auto-updated.
Last update: 2024-11-11 00:02:51 UTC
README
Bundle
JS
Insérez la librairie Google avec la balise :
<script src='https://www.google.com/recaptcha/api.js'></script>
Config
wh_recaptcha:
public_key: ''
private_key: ''
Mise en place sur un formulaire
FormType
Ajouter un champ dans le formulaire, ex :
->add(
'recaptcha',
RecaptchaType::class
)
Thème
Appliquer le thème au formulaire :
{% form_theme form with ['my_base.html.twig', 'WHRecaptchaBundle:Form:fields.html.twig'] %}