contact.html (846B)
1 --- 2 --- 3 4 <div class="contact-page"> 5 <h2>Get in touch</h2> 6 7 <form action="https://api.web3forms.com/submit" method="POST" class="contact-form"> 8 9 <!-- Replace with your Access Key --> 10 <input type="hidden" name="access_key" value="1fabf5eb-b95f-48d4-a01e-458e11d53846"> 11 12 <!-- Form Inputs. Each input must have a name="" attribute --> 13 <input type="text" name="name" placeholder="Name" required> 14 <input type="email" name="email" placeholder="info@example.com" required> 15 <textarea name="message" placeholder="Hello!" required></textarea> 16 17 <!-- Honeypot Spam Protection --> 18 <input type="checkbox" name="botcheck" class="hidden" style="display: none;"> 19 20 <!-- Custom Confirmation / Success Page --> 21 <input type="hidden" name="redirect" value="/about"> 22 23 <button type="submit">Submit</button> 24 </form> 25 </div