diff options
author | Adam T. Carpenter <atc@53hor.net> | 2022-04-24 17:28:59 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2022-04-24 17:28:59 -0400 |
commit | f51452a2c41b64b12f5db3180c48c4958f8a2c65 (patch) | |
tree | 4fa2b760e9ca37162bc082410f9e08143841ccf8 /header.php | |
parent | e282dde3d5a3599fb744ed2486ebb6bab8af9da1 (diff) | |
download | carpentertutoring-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.php | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -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 |