Let’s Get Started
To integrate the JustContact API into your website, you will need to prepare a few things.
This guide will walk you through the necessary steps.
Prerequisites
- A website with a contact form
- A Google reCAPTCHA key for your domain
- And finally an account here at JustContact.io
Contact Form
For starters, you will need a form. It can be as simple as just pure HTML code.
This form doesn’t impress visually, but will get the job done:
<form action="" 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>
<button type="submit">Submit</button>
</form>