<h1>Contact Form</h1>
<form id="contact_form" name="contact_form" method="post">
<div class="mb-5 row">
<div class="col">
<label>First Name</label>
<input type="text" required maxlength="50" class="form-control" id="first_name" name="first_name">
</div>
<div class="col">
<label>Last Name</label>
<input type="text" required maxlength="50" class="form-control" id="last_name" name="last_name">
</div>
</div>
<div class="mb-5 row">
<div class="col">
<label for="email_addr">Email address</label>
<input type="email" required maxlength="50" class="form-control" id="email_addr" name="email"
placeholder="name@example.com">
</div>
<div class="col">
<label for="phone_input">Phone</label>
<input type="tel" required maxlength="50" class="form-control" id="phone_input" name="Phone"
placeholder="Phone">
</div>
</div>
<div class="mb-5">
<label for="message">Message</label>
<textarea class="form-control" id="message" name="message" rows="5"></textarea>
</div>
<button type="submit" class="btn btn-primary px-4 btn-lg">Post</button>
</form>
To seamlessly integrate the form code from ReusableForms.com into your web page, follow these simple steps:
The form code provided above is for the client side only. To fully benefit from the form's features, you'll need a back-end form processor. Ratufa is one such service, and integrating with it is straightforward. Watch the video demo for a step-by-step example.
To receive email notifications upon form submissions, store submission records, and search through them later, you'll need a back-end processor. Here's how to set one up: