For bookings, enquiries, or just to say hello, please get in touch!
<!-- Replace with your Access Key --> <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY_HERE"> <!-- Optional: Custom Subject --> <input type="hidden" name="subject" value="New Submission from Swing 42 Website"> <!-- Optional: Redirect (defaults to basic success page if omitted) --> <input type="hidden" name="redirect" value="https://web3forms.com/success"> <div style="display: flex; flex-direction: column;"> <label for="name" style="font-weight: bold; margin-bottom: 0.5rem; color: var(--color-primary);">Name</label> <input type="text" name="name" id="name" required style="padding: 10px; border: 1px solid #333; background: #000; color: #fff; border-radius: 4px;"> </div> <div style="display: flex; flex-direction: column;"> <label for="email" style="font-weight: bold; margin-bottom: 0.5rem; color: var(--color-primary);">Email</label> <input type="email" name="email" id="email" required style="padding: 10px; border: 1px solid #333; background: #000; color: #fff; border-radius: 4px;"> </div> <div style="display: flex; flex-direction: column;"> <label for="message" style="font-weight: bold; margin-bottom: 0.5rem; color: var(--color-primary);">Message</label> <textarea name="message" id="message" rows="5" required style="padding: 10px; border: 1px solid #333; background: #000; color: #fff; border-radius: 4px; font-family: sans-serif;"></textarea> </div> <!-- Honeypot Spam Protection --> <input type="checkbox" name="botcheck" class="hidden" style="display: none;"> <button type="submit" class="btn" style="border: none; cursor: pointer; font-size: 1rem; align-self: flex-start;">Send Message</button> </form>