'Captcha:' shows in form #259
-
I there any way to not display 'Captcha:' in a form ? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
being captcha = ReCaptchaField(...) |
Beta Was this translation helpful? Give feedback.
-
captcha = ReCaptchaField(
label='',
widget=ReCaptchaV3()
) |
Beta Was this translation helpful? Give feedback.
-
Another (more accessible) way to do this would be to use JavaScript to insert a class that keeps the label for screen readers but hides it otherwise::
This example relies on jQuery and Bootstrap, but you could roll your own solution to accomplish the same thing. |
Beta Was this translation helpful? Give feedback.
Another (more accessible) way to do this would be to use JavaScript to insert a class that keeps the label for screen readers but hides it otherwise::
This example relies on jQuery and Bootstrap, but you could roll your own solution to accomplish the same thing.