-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
57 lines (52 loc) · 1.86 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact/Booking - Bokkerijders</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("-HXjHlEI8ydoyacHi");
})();
</script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="shows.html">SHOWS</a></li>
<li><a href="releases.html">RELEASES</a></li>
<li><a href="https://bokkerijders.bigcartel.com/">MERCH</a></li>
<li><a href="contact.html">CONTACT/BOOKING</a></li>
</ul>
</nav>
<img src="images/logo.png" alt="Bokkerijders logo" class="logo-image">
</header>
<main id="contact">
<h1>CONTACT/BOOKING</h1>
<p>For booking and other inquiries, fill out the form below or email us at <a href="mailto:[email protected]">[email protected]</a></p>
<form action="https://api.web3forms.com/submit" method="POST">
<!-- Replace with your Access Key -->
<input type="hidden" name="access_key" value="c967964c-055d-4a74-b567-af4fe81cb055">
<!-- Form Inputs. Each input must have a name="" attribute -->
<label for="name">Name</label>
<input type="text" name="name" required>
<label for="email">Email</label>
<input type="email" name="email" required>
<label for="message">Message</label>
<textarea name="message" required></textarea>
<!-- Honeypot Spam Protection -->
<input type="checkbox" name="botcheck" class="hidden" style="display: none;">
<button type="submit">Send</button>
</form>
</main>
<footer>
<p>© 2024 BOKKERIJDERS. NEE.</p>
</footer>
<script src="script.js"></script>
</body>
</html>