You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed in the new Recaptcha v3 field type that the javascript expect an input using type=submit. This is fine, but it doesn't take into account that you might want to use a custom them overriding the Form partial view to use <button type="submit">Submitinstead. This is sometimes useful if you e.g. want to add an inlineicon or another child element, which<input type=submit /> doesn't allow.
We an of course override the Fieldtype.Recaptcha3.cshtml in our custom theme, but I wonder if we can modify the following the support <button> element as well?
I noticed in the new Recaptcha v3 field type that the javascript expect an input using
type=submit
. This is fine, but it doesn't take into account that you might want to use a custom them overriding the Form partial view to use<button type="submit"
>Submitinstead. This is sometimes useful if you e.g. want to add an inline
icon or another child element, which
<input type=submit/>
doesn't allow.We an of course override the
Fieldtype.Recaptcha3.cshtml
in our custom theme, but I wonder if we can modify the following the support<button>
element as well?It could be something like:
or
The text was updated successfully, but these errors were encountered: