summaryrefslogtreecommitdiff
path: root/layouts/contact/single.html
blob: 852446c8e9e6a13ca5b1c8b740494104b9bf5f1c (plain)
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
{{partial "header.tmpl" .}}
<div class="row">
    <header><p>{{.Title}}</p></header>
</div>
<div class="container content">
	<div class="row">
		<form class="contactform" action="https://www.iamfabulous.de/submit/" method="POST">
		  <div class="row">
		    <div class="six columns">
		      <label for="from">your email</label>
		      <input class="u-full-width" placeholder="mail@domain.com" id="from" name="from" type="email">
		    </div>
		    <div class="six columns">
		      <label for="subject">subject</label>
		      <input class="u-full-width" placeholder="hello" id="subject" name="subject" type="text">
		    </div>
		  </div>
		  <input type="text" class="hp" value="" name="gotit">
		  <div class="row">
		  	<div class="twelve columns">
		    	  <label for="message">message</label>
		    	  <textarea class="u-full-width" placeholder="type your message here …" id="message" name="message"></textarea>
		  	</div>
		  </div>
		  <!--label class="example-send-yourself-copy">
		    <input type="checkbox">
		    <span class="label-body">Send a copy to yourself</span>
		  </label-->
		  <div class="row">
		  	<div class="six columns">
		    	  <label>captcha</label>
		    	  <img id="captcha-img" src="#" alt="captcha image" width=240 height=80>
		  	  <input id="captcha-id" type="hidden" name="captchaid" required>
		  	</div>
		  	<div class="six columns">
		    	  <label for="captcha-solution">verification</label>
		  	  <input class="u-full-width" id="captcha-solution" type="text" name="captchaanswer" placeholder="enter the code displayed in the image" required>
		  	</div>
		  </div>
		  <div class="row margin-top">
		  	<div class="twelve columns">
			  <input class="button-primary contactform-button" value="submit" type="submit">
			  <a class="button margin-left-extra-small" href="../" title="back to index">cancel</a>
		  	</div>
		  </div>
		</form>
	</div>
</div>
<div class="row center">
	<p class="twelve columns">
	</p>
</div>
<script src="/captcha.js" defer async></script>
{{partial "footer.tmpl" .}}