Embed code weebly

Hi there. I created my own form in weebly using embed code. What do I need to do to make sure I receive the info someone puts in the form once they press submit.

 
Here is the code:
 
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <h1 style="font-size: 25px; text-align: center; color: black; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">
      <u>Contact Form</u>
 <br />
    </h1>
    <p style="text-align: center; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 18px;">
      <strong
        ><u>
          Fill out this contact form to get started with your order. Use the box
          below to let us know which service you need.
        </u></strong
      >
    </p>

    <br />
    <form style="text-align: center; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 18px;">
      <label for="first-name"> First Name:</label>
      <input
        type="text"
        name="name"
        placeholder="Enter your first name."
        required
      />

      <label for="last-name"> Last Name:</label>
      <input
        type="text"
        name="name"
        placeholder="Enter your last name."
        required
      />

      <br /><br />

      <label for="email">Email Address:</label>
      <input
        type="email"
        name="email"
        id="email"
        placeholder="Enter your email."
        required
      />

      <br /><br />

      <textarea
        name="message"
        cols="53"
        rows="20"
        placeholder="Enter your message about which service you need."
        required
      ></textarea>
      <br /><br />
      <input type="submit" value="Submit" />
    </form>
  </body>
</html>
 
 
291 Views
Message 1 of 2
Report
1 REPLY 1

Unfortunately what you have in mind is a bit more complicated - creating the HTML Form is the easy part but, sending and collecting the data behind the scenes is beyond the scope of this Community.   (You're going to need a script and access to a server.)   Perhaps an easier solution is to use a 3rd party service.   Checkout Square's App Marketplace.

272 Views
Message 2 of 2
Report