# File 'lib/re_captcha/helpers.rb', line 3
def recaptcha_tags(options = {})
html = ''
html << %(<div class="g-recaptcha" data-sitekey="#{ReCaptcha.client.public_key}" )
html << %(data-stoken="#{secure_token}" #{tag_attributes(options)}></div>\n)
format_html(html)
end
|