Submit form not working

PLEASE help us help you by writing a good post!
-Website: lailakarimportfolio.com
So I’m building this portfolio, and every has worked so far. However, the contact form isn’t working. We’ve tested the form and there’s no notification. Here’s the code snippet:

 </section>
    <section id="contact" class="contact sec-pad dynamicBg">
      <div class="main-container">
        <h2 class="heading heading-sec heading-sec__mb-med">
          <span class="heading-sec__main heading-sec__main--lt">Contact</span>
          <span class="heading-sec__sub heading-sec__sub--lt">
           
          </span>
        </h2>
       <div class="contact__form-container">
         <form name="contact" method="POST" data-netlify="true"
          <form action="#" class="contact__form">
            <div class="contact__form-field">
              <label class="contact__form-label" for="name">Name</label>
              <input
                required
                placeholder="Enter Your Name"
                type="text"
                class="contact__form-input"
                name="name"
                id="name"
              />
            </div>
            <div class="contact__form-field">
              <label class="contact__form-label" for="email">Email</label>
              <input
                required
                placeholder="Enter Your Email"
                type="text"
                class="contact__form-input"
                name="email"
                id="email"
              />
            </div>
            <div class="contact__form-field">
              <label class="contact__form-label" for="message">Message</label>
              <textarea
                required
                cols="30"
                rows="10"
                class="contact__form-input"
                placeholder="Enter Your Message"
                name="message"
                id="message"
              ></textarea>
            </div>
            <button type="submit" class="btn btn--theme contact__btn">
              Submit
            </button>
          </form>
        </div>

I’m a beginner so I’d appreciate any help :slight_smile:

Welcome to the forums @ElJdP

There is an issue with the HTML of the form in this section below

There are two opening <form> tags. This is how it should look.

<form name="contact" method="POST" data-netlify="true" class="contact__form">

On the page itself, there is an email address set for the action.

<form action="mailto:YOUREMAIL@gmail.com " method="postclass=" contact__form"="" data-netlify="true">

and the formatting with " are not correct either. The action is not required if using Netlify Forms, and will (in the case of having an email address in it) contribute to the form not working as intended.

Try using the suggested alteration mentioned at the top, and if you have any issue, do not hesitate to reply.