add honeypot

This commit is contained in:
Henry Hiles 2025-10-29 10:39:36 -04:00
commit 1b260f9988
No known key found for this signature in database
2 changed files with 7 additions and 0 deletions

View file

@ -16,6 +16,9 @@ import "../styles/page.css"
pattern="^[A-Za-z0-9]+$"
/>
</label>
<div class="honeypot">
<input type="text" name="honeypot" tabindex="-1" autocomplete="off">
</div>
<label>
Email
<input name="email" type="email" required />

View file

@ -1,4 +1,8 @@
body {
& .honeypot {
display: none;
}
display: flex;
flex-direction: column;
align-items: center;