summaryrefslogtreecommitdiff
path: root/header.php
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2022-04-24 17:28:59 -0400
committerAdam T. Carpenter <atc@53hor.net>2022-04-24 17:28:59 -0400
commitf51452a2c41b64b12f5db3180c48c4958f8a2c65 (patch)
tree4fa2b760e9ca37162bc082410f9e08143841ccf8 /header.php
parente282dde3d5a3599fb744ed2486ebb6bab8af9da1 (diff)
downloadcarpentertutoring-f51452a2c41b64b12f5db3180c48c4958f8a2c65.tar.xz
carpentertutoring-f51452a2c41b64b12f5db3180c48c4958f8a2c65.zip
feat: enable honeypot on form submissions and prevent automatic submissions by bots
Diffstat (limited to 'header.php')
-rw-r--r--header.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/header.php b/header.php
index 42925fa..5c40495 100644
--- a/header.php
+++ b/header.php
@@ -169,11 +169,20 @@
resize: none;
}
+ /* honeypot */
+ textarea#beehive {
+ display: none;
+ }
+
table {
width: 100%;
border-collapse: collapse;
}
+ table caption {
+ text-align: left;
+ }
+
table th {
text-align: right;
color: var(--darkteal);
@@ -280,7 +289,7 @@
<a href="/policies">Policies</a>
<a href="/#pricing">Pricing</a>
<a href="/#offerings">Offerings</a>
- <a href="/#"><img src="/assets/logo-simple.png" /></a>
+ <a href="/#"><img alt="logo" src="/assets/logo-simple.png" /></a>
</nav>
- <main>
+ <main> \ No newline at end of file