Netlify Form received empty values on my SvelteKit website

here’s the url of my website: https://wentallout.tech
here’s my repo with the contact form component: portfolio/ContactForm.svelte at master · wentallout/portfolio · GitHub

Hi :wave:t6: , sorry you are having trouble getting your forms to work.

This Support Guide is the first port of call to debug any forms issues. Please start here and work through these resources!

We also recommend trying to search the forums or look at topics tagged Netlify forms if you haven’t already - it’s likely your question was already asked by someone else!

If you are still having problems, please provide more information such as what you have already tried.

I don’t see how this is helping me. I simply followed: Easy HTML Forms in SvelteKit with Netlify Forms | Netlify

Maybe your guide is wrong?

Here’s the rendered HTML
image

If we received a blank submission, we’ll show it as a blank submission. Not sure if you were aware, the UI is not the only way to submit a form. You can add all the validation you need in there (like making the inputs required), but anyone can skip those. For example, try sending a curl request as:

curl --form 'form-name="contact"' 'https://wentallout.tech/'

as the submission will work (I just made one). Since there’s no other form field attached, those would appear blank.

The only way to block these submissions is by using ReCaptcha.