juliaajeremiah
06-16-2024
09:07 PM
Thread Options
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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>
<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>
Reply
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
1 REPLY 1
JK_Fiber_Art
06-17-2024
06:07 AM
Thread Options
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
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.
Reply
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report