diff options
| author | Horus3 | 2016-11-23 18:07:51 +0100 |
|---|---|---|
| committer | Horus3 | 2016-11-23 18:07:51 +0100 |
| commit | 68c22afe782299a5efd54afd4e6367efd025aec9 (patch) | |
| tree | 7a0758c0b7eac350941fec8345c8b483cd84b4db /layouts/contact | |
| parent | 26c446cd6f9d4bf58d3b7368ea984ce167f4081c (diff) | |
| download | iamfabulous.de-68c22afe782299a5efd54afd4e6367efd025aec9.tar.gz | |
Fügt contact form hinzu.
Diffstat (limited to 'layouts/contact')
| -rw-r--r-- | layouts/contact/single.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layouts/contact/single.html b/layouts/contact/single.html new file mode 100644 index 0000000..c497c55 --- /dev/null +++ b/layouts/contact/single.html @@ -0,0 +1,33 @@ +{{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> + <label for="message">message</label> + <textarea class="u-full-width" placeholder="type your message here …" id="message" name="message"></textarea> + <!--label class="example-send-yourself-copy"> + <input type="checkbox"> + <span class="label-body">Send a copy to yourself</span> + </label--> + <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" .}} |
