# yesod-recaptcha2
[](https://hackage.haskell.org/package/yesod-recaptcha2)
[](https://travis-ci.org/ncaq/yesod-recaptcha2)
~~~hs
import Yesod.ReCaptcha2
~~~
~~~hs
instance YesodReCaptcha App where
reCaptchaSiteKey = pure "foo"
reCaptchaSecretKey = pure "bar"
reCaptchaLanguage = pure Nothing
~~~
## Append to applicative form
~~~hs
buildForm :: Form MyForm
buildForm = renderDivs $ MyForm
<$> areq textField "foo" Nothing
<* reCaptcha
~~~