From f51452a2c41b64b12f5db3180c48c4958f8a2c65 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sun, 24 Apr 2022 17:28:59 -0400 Subject: feat: enable honeypot on form submissions and prevent automatic submissions by bots --- header.php | 13 +++++++++++-- index.php | 48 +++++++++++++++++++++++++++++++----------------- 2 files changed, 42 insertions(+), 19 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 @@ Policies Pricing Offerings - + logo -
+
\ No newline at end of file diff --git a/index.php b/index.php index e24473d..64f369e 100644 --- a/index.php +++ b/index.php @@ -1,9 +1,21 @@ - +