-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-page-with-form-nl.hbs
84 lines (64 loc) · 3.1 KB
/
custom-page-with-form-nl.hbs
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="nl">
<head>
{{!-- Document Settings --}}
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
{{!-- Base Meta --}}
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
{{!-- Styles'n'Scripts --}}
<link rel="stylesheet" type="text/css" href="{{asset "main/css/main.css"}}"/>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
{{!-- This tag outputs SEO meta+structured data and other important settings --}}
{{ghost_head}}
</head>
<body class="is-preload {{body_class}}">
<div id="wrapper">
<main id="main">
<div class="inner">
{{!-- Header --}}
<header id="header">
{{#if @site.logo}}
<a href="{{@site.url}}" class="logo image"><img src="{{@site.logo}}" alt="acniti drink waterstof"/></a>
{{else}}
<a href="{{@site.url}}" class="logo">acniti drink waterstof</a>
{{/if}}
<ul class="icons">
<li><a href="https://shop.acniti.com" class="icon fa-shopping-cart" target="_blank"
title="Koop onze producten"><span class="label">Koop onze producten</span></a></li>
</ul>
</header>
<section>
<header class="main content">
<h1>Contact</h1>
<img src="https://s3.acniti.com/acniti-h2-contact.png" alt="acniti contact">
</header>
<div class="content">
<p>Voer de reCAPTCHA-controle uit voordat u uw bericht verzendt</p>
<p>Laat ons uw vragen weten of geef u ideeën</p>
<form class="contact-form" action="https://formspree.io/{{> secret-email}}" method="post">
<label for="full-name">Naam</label>
<input type="text" name="name" id="full-name" placeholder="Voor en Achternaam" required>
<label for="email-address">Email adres</label>
<input type="email" name="_replyto" id="email-address" placeholder="Jouw Emailadres" required>
<label for="message">Bericht</label>
<textarea rows="5" name="message" id="message" placeholder="Jouw Bericht" required></textarea>
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission">
<div class="g-recaptcha" data-sitekey="6LfW4s8ZAAAAAJM9ZLZJxLyNLygXAbelQGMo0DVY"></div>
<input type="submit" value="VERZENDEN">
</form>
</div>
</section>
</div>
</main>
{{> sidebar-nl}}
</div>
{{!--load java script--}}
{{> scripts}}
{{!-- Ghost outputs important scripts & data with the {ghost_foot} tag
it should always be the very last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>