summaryrefslogtreecommitdiff
path: root/layouts/contact/single.html
blob: cca9ab9385b740e0bc4e97910ac2dbb9d6d8482f (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
{{partial "header.tmpl" .}}
<div class="row">
    <header><p>{{.Title}}</p></header>
</div>
<div class="container content">
	<div class="row">
		<form class="contactform" action="/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" required>
		    </div>
		    <div class="six columns">
		      <label for="subject">subject</label>
		      <input class="u-full-width" placeholder="hello" id="subject" name="subject" type="text" required>
		    </div>
		  </div>
		  <input type="text" class="hp" value="" name="gotit">
		  <label for="message">message</label>
		  <textarea class="u-full-width" placeholder="type your message here …" id="message" name="message" required></textarea>
		  <!--label class="example-send-yourself-copy">
		    <input type="checkbox">
		    <span class="label-body">Send a copy to yourself</span>
		  </label-->
		  <iframe src="https://www.iamfabulous.de/newcaptcha" border=0>
			  </iframe>
			  <input type="text" name="capanswer" required>
		<input class="button-primary contactform-button" value="submit" type="submit">
		<a style="margin-left: 10px;" class="button" href="../" title="back to index">cancel</a>
		</form>
	<div/>
<div/>
<div class="row center">
	<p class="twelve columns">
	</p>
</div>
{{partial "footer.tmpl" .}}