Form submitted successfully but on netlify UI I can only see timestamp

Hi,
I am having a small problem with my form. I fill in all the details on my form and submit. I receive a message telling me that this was successful.

On the netlify UI I can see that I have verified submissions. When I expand them, they don’t show any content except something like this:
Received today at 9:27 PM from 2a00:23c4:3282:7600:69a5:db4e:f25a:c1f7

I have specified

<div class="contact form">

            <h4>Message</h4>

            <form name="contactForm" data-netlify="true">

              <div class="formBox">

                <div class="row50">

                  <div class="inputBox">

                    <span>Name</span>

                    <input type="text" placeholder="Name">

                  </div>

                  <div class="inputBox">

                    <span>Email Address</span>

                    <input type="text" placeholder="Email Address">

                  </div>

                </div>

                <div class="row100">

                  <div class="inputBox">

                    <span>Subject</span>

                    <input type="text" placeholder="Subject" required>

                  </div>

                </div>

                <div class="row100">

                  <div class="inputBox">

                    <span>Message</span>

                    <textarea placeholder="Your message..."></textarea>

                  </div>

                </div>

                <div class="row100">

                  <div class="inputBox">

                    <input type="submit" value="Send">

                  </div>

                </div>

              </div>

            </form>

          </div>

I have looked through the forum but have not been able to find a solution to my problem.
Many thanks.
Antje

Hey @purpleshadow1975

Your form inputs a missing name attributes.

For example you have

<input type="text" placeholder="Name">

when you need

<input type="text" placeholder="Name" name="name">

The name is required on all <input> and <textfield> elements inside your form, ensuring all names are unique (i.e. you can only have one element with name="name".)

1 Like

Thank you so much for your quick response. Many thanks