Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdevo <kdevo@users.noreply.github.com>2022-04-30 20:28:02 +0300
committerkdevo <kdevo@users.noreply.github.com>2022-04-30 20:29:36 +0300
commit004ccd69a5d1c8866e78fe6e0814bba30784623d (patch)
treec42ebcdbc990d2fc0af71f70c0a3fbede183c695
parent0cb7ac0f03a566e664ea22c1fcaa12c1b2594aac (diff)
fix(sections): remove formspree URL from contact form
Although not a bug, it lead to confusion multiple times, see e.g.: - https://github.com/kdevo/osprey-delight/issues/28 - https://github.com/kdevo/osprey-delight/pull/20 Closes #28.
-rw-r--r--layouts/partials/sections/contact.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/layouts/partials/sections/contact.html b/layouts/partials/sections/contact.html
index db423e5..a320165 100644
--- a/layouts/partials/sections/contact.html
+++ b/layouts/partials/sections/contact.html
@@ -9,8 +9,7 @@
</div>
</div>
- {{/* The action URL will be set to Basin via JS. Below formspree.io URL is just a small trick for spambots to fall into the honeypot. */}}
- <form id="form-contact" action="https://formspree.io" method="POST">
+ <form id="form-contact" action="" method="POST">
<div class="row center-xs">
<div class="col-xs-12 col-sm-6"><input type="text" name="name" aria-label="name" placeholder="{{ i18n "name" }}" required></div>
<div class="col-xs-12 col-sm-6"><input type="email" id="email" name="email" aria-label="email address" placeholder="{{ i18n "email" }}" required></div>