-
Notifications
You must be signed in to change notification settings - Fork 908
Added a React version of index.js and form-submission-handler.js #453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Open
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
a39aedf
Reset the web form on successful submission, fixes #283
mckennapsean bb43ef9
Add a GDPR note at the top of the README, addresses #217
mckennapsean c5c75f2
Merge pull request #312 from dwyl/gdpr-tagline
nelsonic 7009d70
Merge pull request #311 from dwyl/reset-form
nelsonic da0ed64
Remove unnecessary form validation for email
mckennapsean 6ea59bb
Fixes #321 by adding honeypot spam prevention
mckennapsean 1ea724e
Merge pull request #327 from dwyl/remove-unnecessary-validation
nelsonic 798d9c5
Merge branch 'master' into default-to-honeypot
nelsonic e5e01a8
Merge pull request #328 from dwyl/default-to-honeypot
nelsonic c75dccb
Remove unused validateHuman function (#335)
b796c01
Fix IE with JS since object keys must be defined but only in IE
mckennapsean 660b8b1
Merge pull request #338 from dwyl/fix-ie
nelsonic d0750f8
Check for success before clearing form. (#326)
mckennapsean 75921d7
Update README.ko.md
GimunLee f8653c3
Update README.ko.md
GimunLee f71b2cf
Update README.ko.md
GimunLee 69eeadd
Merge pull request #354 from GimunLee/master
nelsonic d25a253
Update README.md
GimunLee 8163d79
Merge pull request #355 from GimunLee/master
nelsonic 05d117c
Update READMD.md
GimunLee 1ec9882
Update README.md
GimunLee 375725d
Update README.ko.md
GimunLee 798c074
Merge pull request #356 from GimunLee/master
nelsonic ce8152f
Fixing attribute name mismatch (#360)
81231df
Add portuguese translation and references to português in other trans...
cristianofromagio 2ed6ed0
Apply suggestions from code review
nelsonic d4c8902
Merge pull request #391 from cristianofromagio/add-portuguese-transla...
nelsonic f680e85
Add to faq improve on PR 344 (#398)
mckennapsean ca95429
Update Apps Script editor images & steps
mckennapsean b6f9006
Merge pull request #420 from dwyl/update-google-apps-script-images
nelsonic 5ea15b7
update & fix readme links
Arhell a5ed003
Merge pull request #429 from dwyl/upd
nelsonic 4c5d891
update links
Arhell 205dbae
Merge pull request #431 from dwyl/upd
nelsonic d65ae69
update researching recommendations on user privacy link
Arhell 6b1122f
Merge pull request #433 from dwyl/upd
nelsonic bae8d5a
initial commit to contribute!
autumn-lindberg 04c2d16
started on validation, stuck on datalist
autumn-lindberg ba8463e
Merge pull request #1 from autumn-lindberg/validation
autumn-lindberg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixes #321 by adding honeypot spam prevention
Remove unnecessary steps in the readme by including honeypot spam prevention by default in the script. Works just fine if no honeypot field is present, since the falsey or empty behavior also means the form is submitted. This just makes it easier for users to take our example and get this feature for free rather than needing to go through steps and having commented out code in our sample script. Also fixes a bug since filtering out the honeypot meant that the honeypot data was no longer being used and was thus broken.
- Loading branch information
commit 6ea59bb910c090758536769a4926676df70b373f
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,3 +35,6 @@ button { | |
| #name, #email { | ||
| width: 50%; | ||
| } | ||
| .honeypot-field { | ||
| display: none; | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.