Great resource, thanks for all the effort!
There's a inconsistency in the README causing the thankyou_message not to display. Might be confusing for some people.
The README says to use an id:

But in form-submission-handler.js it references the class:
var thankYouMessage = form.querySelector(".thankyou_message");
if (thankYouMessage) {
thankYouMessage.style.display = "block";
}
Solution is to update either the README (<div style="display:none;" class="thankyou_message">) or the javascript (form.querySelector("#thankyou_message");).
Hi @timvink, ๐
good observation. ๐โ
That is indeed an inconsistency. ๐
If you have time to update it, we would _welcome_ a pull request. ๐
Thank you! โ๏ธ
Sure thing! I also updated the text around it a bit hopefully to make it a bit more clear to new users. Let me know if you want something changed.
Most helpful comment
Sure thing! I also updated the text around it a bit hopefully to make it a bit more clear to new users. Let me know if you want something changed.