Files
kycnotme/web/src/components/InputHoneypotTrap.astro
2025-05-19 10:23:36 +00:00

21 lines
281 B
Plaintext

---
type Props = {
name: string
}
//
---
<input
type="text"
name={Astro.props.name || 'message'}
aria-hidden="true"
style="display:none !important"
autocomplete="off"
tabindex="-1"
data-1p-ignore
data-lpignore="true"
data-bwignore
data-form-type="other"
/>