Contact Form Templates
HTML
Here is for starters, a simple form in just plain HTML code.
If you don’t care much about the visual side of it, it can be as simple as this:
<!-- Google reCAPTCHA -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Contact form, replace {project_key} with your key -->
<form action="https://form.justcontact.io/{project_key}" method="post">
<label for="name">Name*:</label>
<input type="text" id="name" name="name" required />
<label for="company">Company:</label>
<input type="text" id="company" name="company" />
<label for="email">Email*:</label>
<input type="email" id="email" name="email" required />
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" />
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" />
<label for="message">Message*:</label>
<textarea id="message" name="message" required rows="5"></textarea>
<!-- Replace {your_site_key} with your reCAPTCHA key -->
<div class="g-recaptcha" data-sitekey="{your_site_key}"></div>
<button type="submit">Submit</button>
</form>